Hi,
Following is my code for ondemand drop down implementation. This implementation allowing user to enter text in combobox. My requirement is user should not allow to enter text.
<telerik:RadComboBox ID="cmbUptiering" runat="Server" EnableEmbeddedSkins="true" ZIndex="500001" Skin="Default" AllowCustomText="false" EnableLoadOnDemand="true" EmptyMessage="ALL">
<WebServiceSettings Method="GetClient" />
</telerik:RadComboBox>
Please help.
Regards,
Hi. I'm trying to use findControl on a RadTreeNode on the client side to locate a radio button I have in the NodeTemplate, and I can't get it to locate it. I have tried just passing in the ID of the radio button in the code (RB1), and also the full client ID from the generated html. Each time, the control comes up null.
Also, is there is a way to get the client id of the current node if I have to construct the radio buttons client id?
One more: are there any other ways to access the controls under the node? Use the DOM? Is there a collection of controls availabe?
Thanks,
Brian
| <telerik:RadTreeView ID="RadTreeView1" runat="server" Skin="Office2007" |
| OnClientNodeClicked="RadTreeView1_NodeClick" ShowLineImages="True" > |
| <Nodes> |
| <telerik:RadTreeNode runat="server" Text="Produce"> |
| <NodeTemplate> |
| <div> |
| <asp:RadioButton runat="server" ID="RB1" Text="Produce" GroupName="StandardTags" /><br /> |
| </div> |
| </NodeTemplate> |
| </telerik:RadTreeNode> |
| </Nodes> |
| </telerik:RadTreeView> |
In the js:
| function RadTreeView1_NodeClick(sender, eventArgs) |
| { |
| var node = eventArgs.get_node(); |
| var strControl = "RadTreeView1_i0_RB1"; |
| var radio = node.findControl(strControl); |
| ??? radio is null |
| } |
Hi,
The radcombobox does not expand when i have dropdowncssclass ="multipleRowsColumns" , it works fine when i remove the property. here is the code, any thoughts ?
<
telerik:RadComboBox ID="Country" runat="server" Skin="Sunset"
DataSourceID="Country" DataTextField="Text" DataValueField="Value"
DropDownCssClass="multipleRowsColumns" DropDownWidth="460px" AllowCustomText="false" >
</telerik:RadComboBox>
<
telerik:GridDateTimeColumn DataField="dtCreatedOn" DataType="System.DateTime" DataFormatString="{0:M/dd/yyyy}"
FilterControlWidth="120px" HeaderText="Created On" SortExpression="dtCreatedOn"
UniqueName="dtCreatedOn">
However the filter menu options listed below do not function
EqualTo: Not working
NotEqualTo: Not working
Greaterthan: Not working proper (NOTE: working as Greater than Equal)
LessThanOrEqualTO: Not working (Note: Working as Lessthan)
I need help on this
thanks
MS