The Filter property has three values:
- None - this is the default value. No filtering is done.
- Contains - will return all items which text contains the search text anywhere
- StartsWith - will return all items which text starts with the search text
code of combo box
telerik:Radcombobox runat="server"code of datasource
ID="ddlSystem"
DataTextField="System"
DataValueField="SystemID"
HighlightTemplatedItems="true"
Height="190px"
Width="220px"
DropDownWidth="420px"
DataSourceID="sqlSystem"
EnableItemCaching="True"
EnableLoadOnDemand="True"
emptymessage="Please select one..."
allowcustomtext="True" MarkFirstMatch="True"
>/telerik:RadComboBox>
TableName="tbl_LU_Systems" AutoPage="False"
OrderBy="System">
/asp:LinqDataSource>
set filter
ddlSystem.Filter = (RadComboBoxFilter)Convert.ToInt32(2);
No comments:
Post a Comment