Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Button
System
Hi,
I am creating Button on DCT using the following code
<item name="myButton" rowcontinue="t" >
<label> </label>
<hidden>
<cgi-callout label=">>"/>
</hidden>
</item>
When i am using either label=">" or label=">>" it is creating buttons.
When i am using either label="<" or label"<<" it is giving error??
Is there any specific reasn for this ???
Thanx in Advance
Find more posts tagged with
Comments
Migrateduser
Probably because it is XML? Maybe try < instead of <
Migrateduser
Thanx for your reply
Still it is showing even i use like this
label="<" ??
Thanx once again
Migrateduser
Did you try lt or lt; ? It may not be supported - can you use some characters other than < and > ?
Migrateduser
Thanx John It works with "<"
Is it possible to get the following 4 buttons one below another in the following code.
Here is the code.
<container name="Product Models">
<item name="productmodelavailable" rowcontinue="t" >
<label>Available Product Models</label>
<textarea wrap="virtual" rows="5" cols="20" >
</textarea>
</item>
<item name="myButton" >
<label> </label>
<hidden>
<cgi-callout label=">"/>
</hidden>
</item>
<item name="myButton" rowcontinue="f" >
<label> </label>
<hidden>
<cgi-callout label=">>"/>
</hidden>
</item>
<item name="myButton" rowcontinue="f" >
<label> </label>
<hidden>
<cgi-callout label="<"/>
</hidden>
</item>
<item name="myButton" rowcontinue="t" >
<label> </label>
<hidden>
<cgi-callout label="<<"/>
</hidden>
</item>
<item name="productmodelselected" rowcontinue="t">
<label>Selected Product Models</label>
<textarea wrap="virtual" rows="5" cols="20">
</textarea>
</item>
<item name="AllProductModels">
<label>All Product Models</label>
<checkbox>
<option label="All Product Models" value="All Product Models"/>
</checkbox>
</item>
</container>
Thanx in once gain