<telerik:RadAutoCompleteBox ID="tbSearch" runat="server" InputType="Text" > <WebServiceSettings Method="EventSearch" Path="~/services/SearchService.asmx" /> </telerik:RadAutoCompleteBox> <telerik:RadButton ID="btnSearch" runat="server" Text="<%$ Resources:Global,Search %>" OnClick="btnSearch_Click"></telerik:RadButton><br />
Protected Sub btnSearch_Click(ByVal sender As Object, ByVal e As System.EventArgs) For Each entry As AutoCompleteBoxEntry In tbSearch.Entries Dim strValue As String = Nothing strValue = entry.Value 'value = string.Empty Next End Sub
Private Function GetDataResultFromSearchIndex(ByVal htIndex As Hashtable) As AutoCompleteBoxData Dim acdataResult As AutoCompleteBoxData = Nothing Dim lstitemAutoComplete As List(Of AutoCompleteBoxItemData) = Nothing acdataResult = New AutoCompleteBoxData() lstitemAutoComplete = New List(Of AutoCompleteBoxItemData)() For Each de As DictionaryEntry In htIndex Dim itemAutoComplete As AutoCompleteBoxItemData = Nothing itemAutoComplete = New AutoCompleteBoxItemData() itemAutoComplete.Text = GetKeyValue(de) itemAutoComplete.Value = GetResultValue(de) 'value is filled Call lstitemAutoComplete.Add(itemAutoComplete) Next acdataResult.Items = lstitemAutoComplete.ToArray() Return acdataResult End Function
Hi,
On the client, is there a way to get the value of the DataTextField used for binding? The RadComboBox client object has a property _dataTextField, but this is always empty.
Thanks,
Dave
Hi
On top of page I have got checkboxes which filter some of columns on the grid but also I got context menu on the other columns in the grid.
I was wondering can you have both type of filters on a page? Is there way of clearing of filter expression in rad grid?
Alex
I am using Start time property to keep video thumbnail.. it is working in all browsers but in safari browser those properties are not working like auto Play, Start Time properties can any one has solution for this please suggest.
Thanks,
Yogesh Kumar
I have a tabstrip linked to a RadTreeView via the RadAjaxManager. On a node click handler on server side, I add a new tab and a new PageView with some content on, then I select them:
RadMultiPageApps.PageViews.Add(pageView); |
RadTabStripApps.Tabs.Add(tab); |
tab.Selected = true; |
// only now select the pageview; apparently it needs the tab selected first. |
pageView.Selected = true; |
That works fine, except for any existing tab and PageView that were created on previous node clicks. Those PageViews lose their content.
I tried disabling postback for those tabs, on client side in the node click event, on server side, even both - without any effect.
What am I missing?
thanks.
Hi all - Is there a way to reset the my configuration wizard? It renders as a completely unreadable modal of a static size (see attached). It renders this way regardless of the control used.
If an object such as a button has an existing cssclass defined, will RadFormDecorator override the definition? Is there a way to force it to override any existing definition? Also, are LinkButtons covered?