Hi all, Currently my dct has a structure asCategory -RootCategory --MainCategory ---SubCategory ----ProductNameHere RootCategory, MainCategory and Subcategory are same kind of items(nested replicants).(All will have same content, just for diffrentiate I have renamed them like that). They are statically designed. Is it possible to design it dynamically such that user can set 5 nested categories as: -RootCategory --MainCategory ---SubCategory ----SubsubCategory -----Subsubsubcategory ------ProductNameor he may enter 2 categories also.It will be a great help if someone shares an idea, clue or code.Looking forward for helpThanks,-Parag
I didn't get your question.. can you please explain in details as what exactly you want?
Sorry for not being clear.I want to intorduce the replicant 'Category' such that it should be nested means Category should go inside the category replicant. the currrent structure of dct is as follows:<container location="category" max="10" min="0" name="category">******<label> Category</label>************************<!-- this field is used to capture the Display name of the Category -->******<item name="Name" pathid="Name" isTitle="t">*******<label> Category Name</label>*******<description>Sub Category Name</description>********<text required="f" maxlength="100">***********<cgi-callout label="Select Category" url="/iw-bin/iw_cgi_wrapper.cgi/ProductCatalog_Category_List_Browse.ipl" window-features="width=360,height=200,resizable=yes,toolbar=no,scrollbars=yes"/>*******</text>******</item>******<container location="category" max="10" min="0" name="category">*******<label> Category</label>********************<!-- this field is used to capture the Display name of the Category -->*******<item name="Name" pathid="Name" isTitle="t">********<label> Category Name</label>********<description>Sub Category Name</description>********<text required="f" maxlength="100">************<cgi-callout label="Select Category" url="/iw-bin/iw_cgi_wrapper.cgi/ProductCatalog_Category_List_Browse.ipl" window-features="width=360,height=200,resizable=yes,toolbar=no,scrollbars=yes"/>********</text>*******</item>**************<container location="product" max="10" min="0" name="product">********<label>Product</label>******************************<!-- this field is used to capture the Display name of the Category -->********<item name="Name" pathid="Name" isTitle="t">*********<label>Product Name</label>*********<description>Product Name</description>*********<text required="f" maxlength="100">**************<cgi-callout label="Select Product" url="/iw-bin/iw_cgi_wrapper.cgi/ProductCatalog_ProductList_Browse.ipl" window-features="width=430,height=200,resizable=yes,toolbar=no,scrollbars=yes"/>*********</text>********</item>*******</container>******</container></container>Here the strucure is fixed. I can add only 2 nested categories i.e. Category under category. If I want to add 3 nested categories likeCategory----Category-------Category ---------ProductThen this will not possible. We are planning to leave this thing upto user how many nested categories he wants. So I want to achieve it dynamically such that there will be a single replacant in DCT, it will have 2 items i)name-text box ii)button.on clicking this button the same type of replicant will be added to current replicant. So the nesting will be achieve.In this way user will not be restricted to specific depth.I wanted to know is this possible? If yes how?looking for repliesThanks-Parag