Search found 14 matches

by jattwood@nubrand.ca
Wed Mar 03, 2010 11:19 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Add to Cart with Enter Key
Replies: 3
Views: 3699

Add to Cart with Enter Key

I am using a variation of ConLib_CategoryGridPage3 that has multiple add to cart buttons on the page for any given category - one add to cart button for each product. If I place focus on one product and specify a qty and hit the enter key, the page posts back to the server and returns the simple sea...
by jattwood@nubrand.ca
Mon Jan 18, 2010 9:19 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: External site login / web service
Replies: 2
Views: 3910

Re: External site login / web service

For anyone wanting to do this, a good approach is IFRAME. Here is what I did to create a custom login to the store from any external site : Note: I have my entire store locked down at the root inside the web.config: <system.web> <!-- FORCE LOGIN FOR ENTIRE STORE --> <authorization> <deny users="?"/>...
by jattwood@nubrand.ca
Mon Jan 11, 2010 11:16 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: External site login / web service
Replies: 2
Views: 3910

External site login / web service

I am trying to allow users to login to able from a different website. I think a webservice might do the trick or an ajax call to a page that contains the login dialogue. Can anyone point me to any code snippets?

Much appreciated.

Jamie Attwood
by jattwood@nubrand.ca
Tue Dec 01, 2009 9:15 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Conlib - How does it work?
Replies: 0
Views: 2040

Conlib - How does it work?

I am loving Able right now, lots of extensibility! Without revlealing all your trade secrets, I am looking for a method of embedding user controls in one of my apps in a similar way that you have built the [[Conlib:]] syntax. Was that constructed as a custom expression builder? Any suggestions are a...
by jattwood@nubrand.ca
Wed Nov 18, 2009 12:52 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Single Add to Cart Button on Category Grid
Replies: 3
Views: 6404

Re: Single Add to Cart Button on Category Grid

I am getting into a bad habit of posting and then finding the answer on my own. For anyone looking to add individual add to cart buttons on the each item inside the category grid page instead of a global add multiple to cart, follow the steps in my last post, then, make sure you change EnableViewSta...
by jattwood@nubrand.ca
Wed Nov 18, 2009 12:40 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Single Add to Cart Button on Category Grid
Replies: 3
Views: 6404

Re: Single Add to Cart Button on Category Grid

Thanks for the tip. I still cant get the new button to fire - the page just sits there, looks like the command arg is not being registered. Here is what I am doing: 1) Added new button inside datalist: <asp:Button ID="AddToCart" runat="server" Text="AddToCart" CommandName="ADDTOCART" CommandArgument...
by jattwood@nubrand.ca
Wed Nov 18, 2009 8:54 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Display Basket in AJAX Modal Dialog
Replies: 1
Views: 2657

Display Basket in AJAX Modal Dialog

I have a requirement to show cart contents (basket) in a modal dialog window (contents overlay shopping card with darkened bg)

Any suggestions on how to implement this one?

Thanks,

Jamie
by jattwood@nubrand.ca
Wed Nov 18, 2009 8:39 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Single Add to Cart Button on Category Grid
Replies: 3
Views: 6404

Single Add to Cart Button on Category Grid

I am currently using the category grid conlib with basket options. I have a requirement to add an "add to cart" button next to each item within the datalist instead of the one multiple add to cart button at the bottom of the page. Can you please give me some ideas on how I would do this? I have trie...
by jattwood@nubrand.ca
Tue Nov 17, 2009 11:41 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: AllCategories.ascx Code Help for Navigation
Replies: 4
Views: 4996

Re: AllCategories.ascx Code Help for Navigation

Forget it, I can't see the forest for the trees, I just need to add another nested repeater....

Thanks,

jamie
by jattwood@nubrand.ca
Tue Nov 17, 2009 11:38 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: AllCategories.ascx Code Help for Navigation
Replies: 4
Views: 4996

Re: AllCategories.ascx Code Help for Navigation

I have modified the code slightly so it always shows the root of the tree all the way through. However, I notice that the code will only traverse the children to a depth of 3 nodes. How can I extend that further? Here is the modified code: <%@ Control Language="C#" ClassName="AllCategories" %> <scri...
by jattwood@nubrand.ca
Tue Nov 17, 2009 10:22 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Custom scriptlets not appearing in subcategories
Replies: 3
Views: 3450

Re: Custom scriptlets not appearing in subcategories

Ok - I figured it out your instructions were all there, just a little cryptic :) Ok what I did was create a custom scriptlet of type 'content" called "static content" which contains a link to a clone of the CategoryDetailsPage conlib which I renamed to StaticCategoryDetailsPage. I then assigned the ...
by jattwood@nubrand.ca
Mon Nov 16, 2009 3:57 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Custom scriptlets not appearing in subcategories
Replies: 3
Views: 3450

Re: Custom scriptlets not appearing in subcategories

Thanks for the information above; however if you can give me just a little more detail please I would really appreciate it. Here is what I am trying to do: I need to display static content that can be specified in the Content drop down box that maps to a specific scriptlet that I have created. So at...
by jattwood@nubrand.ca
Fri Nov 13, 2009 11:02 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Custom scriptlets not appearing in subcategories
Replies: 3
Views: 3450

Custom scriptlets not appearing in subcategories

I have created a category list that is 4 levels deep. If I assign a custom content scriptlet to control page content at level 1 and 2, it works fine. At level 3 and deeper, the custom content scriptlets do not show. I have a requirement to show custom static content at the root of each level of the ...
by jattwood@nubrand.ca
Mon Nov 09, 2009 10:46 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Add new fields to registration page
Replies: 1
Views: 1822

Add new fields to registration page

Found some high level information on how to add new custom fields to the user registration pages but still in the dark. Specifically, I would like to 1) Add fields to the New customer registration page. (1 basic text field) and store it in the database. Can anyone point me to the .ascx file to modif...