Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 5 of 5

Thread: XMLPACKAGES for categories

  1. #1
    BUBU is offline Member
    Join Date
    Mar 2006
    Location
    Mississauga, ON Canada
    Posts
    73

    Default XMLPACKAGES for categories

    I have a few skins and am having difficulty determining which xmlpackage is being executed.

    In the standard skin that comes with ML v9, I would like to modify the xmlpackage (if that's what is executed) for the menu on the left at:

    <div id="leftWrap">
    <aspdnsf:EntityControl ID="ctrlEntityCategory" runat="server" Header="<%$ Tokens:StringResource, AppConfig.CategoryPromptPlural %>"
    EntityType="Category" MaxMenuSize="<%$ Tokens:AppConfigUSInt, MaxMenuSize %>" />
    </div>
    <div id="content">
    <!-- CONTENTS START -->
    <asp:ContentPlaceHolder ID="PageContent" runat="server">
    </asp:ContentPlaceHolder>
    <!-- CONTENTS END -->
    </div>

    in template.master. Is it a xmlpackage that is executed or something else? Where can I find it and can it be customized for each skin?

    Thanks,

    Boris

  2. #2
    AspDotNetStorefront Staff - Scott's Avatar
    AspDotNetStorefront Staff - Scott is offline Administrator
    Join Date
    Mar 2007
    Location
    Ashland, OR
    Posts
    2,390

    Default

    EntityControl is a control, not an XmlPackage. What are you trying to change exactly? You can change the styling per skin, but changing functionality would be a source code change.

  3. #3
    BUBU is offline Member
    Join Date
    Mar 2006
    Location
    Mississauga, ON Canada
    Posts
    73

    Default

    Thanks for the reply,

    I realize that is the control for displaying the Category menu on the left. Is there an XMLPackage that is executed (if so what is it), or is it reading the Category table directly.

    Thanks

  4. #4
    webopius is offline Senior Member
    Join Date
    Nov 2008
    Location
    London, UK
    Posts
    440

    Default

    In v9, it's a control that reads the data directly.

    It is possible to replace this with your own XML-based menu system... You can also get it to highlight the current page's selected category as long as you are able to extract the current page entityid and entityname from the page URL (we use an XSLT extension for this).

  5. #5
    avekm is offline Member
    Join Date
    Jan 2007
    Posts
    39

    Default

    Quote Originally Posted by AspDotNetStorefront Staff - Scott View Post
    You can change the styling per skin, but changing functionality would be a source code change.
    Can you please provide instructions on how to change the styling of this control (EntityControl)? Nothing I do seems to remove the header or the border around the categories. Is there any documentation for the new controls that have been implemented?

    Thank you.