Hey Gang,
I'm taking my first plunge into the world of BV Commerce and geting my feet wet in .net
My first task (if it can be done), is to create a Category Menu with Tree Menu functionality. In that the categories and subcategories can be opened and closed without the page reloading.
Like I created for this site:
http://www.hanleywoodopportunities.com/index.aspUsing Firefox's handy Web Dev and Firebug tools, I believe I tracked down the file that handles this:
CategoryMenu/View.aspx
<div class="categorymenu">
<div class="decoratedblock">
<asp:PlaceHolder ID="TitlePlaceHolder" runat="server"></asp:PlaceHolder>
<asp:PlaceHolder ID="MenuControl" runat="Server"></asp:PlaceHolder>
</div>
</div>
Being new to .net, I'm not sure, but I suspect that's a server side control for .net and I may not be able to accomplish what I'd like to do.
Ultimately, instead of the control creating an set of <ul><li>
I'd like it to put the categories into Div Tags with:
onClick="P7_TMenu(this);return false"
In the anchor tags
<div><a href="#" onClick="P7_TMenu(this);return false">Category</a>
<div><a href="URL">Sub Category</a></div>
<div><a href="URL">Sub Category</a></div>
<div><a href="URL">Sub Category</a></div>
</div>
Is this possible, or is there another method or plugin available?
I'd rather have this work dynamically, than Hard-Code the menu
Thanks
-Dave