Hi,
I have these two dropdownlists in a Edit Form Template where I tried to set the number of items to show and/or the height but is not producing any effect. please look at the pictures attached.
What I would like to achieve is the following:
For the dropdownlist "Minutes" shows only the 4 items
For the dropdownlist "hours" show the first 12" values and then the others only on demand.
How can I fix these dropdownlists to achieve the above scenario?
Thanks for the support,
Felice
I have these two dropdownlists in a Edit Form Template where I tried to set the number of items to show and/or the height but is not producing any effect. please look at the pictures attached.
<EditFormSettings EditFormType="Template"> <FormTemplate> <table class="table"> <telerik:RadDropDownList ID="RadDropDownList2" ItemCountPerRequest="4" DefaultMessage="Please select a value" runat="server" DataSourceID="SqlDataSource3" DataTextField="minutes" DataValueField="minutes" SelectedValue='<%#Bind("minutes") %>' Skin="Outlook"> </telerik:RadDropDownList> <telerik:RadDropDownList ID="RadDropDownList3" runat="server" ItemCountPerRequest="12" DataSourceID="SqlDataSource4" DataTextField="hours" DefaultMessage="Please select a value" DataValueField="hours" SelectedValue='<%#Bind("hours") %>' Skin="Outlook"> </telerik:RadDropDownList> </table> </FormTemplate></EditFormSettings>For the dropdownlist "Minutes" shows only the 4 items
For the dropdownlist "hours" show the first 12" values and then the others only on demand.
How can I fix these dropdownlists to achieve the above scenario?
Thanks for the support,
Felice