This is a migrated thread and some comments may be shown as answers.

Binding radlistbox with json data

1 Answer 100 Views
ListBox
This is a migrated thread and some comments may be shown as answers.
Mahesh
Top achievements
Rank 1
Mahesh asked on 23 Apr 2013, 10:44 AM
I have a radlistbox having an item template .I want to bind it with JSON data  when
 user types some value in name textbox so as to behave it like search result listing in client side.
Here is my code


<telerik:RadListBox
ID="rlbControl" runat="server" SelectionMode="Multiple"> <ItemTemplate> <table> <tr> <td> <asp:Label ID="lblName" runat="server" Text='<%# Eval("Name") %>' ></asp:Label> </td> <td style="width:20px"></td> <td > <asp:Label ID="lblAge" runat="server" Text='<%# Eval("Age") %>' ></asp:Label> </td> </tr> </table> </ItemTemplate> </telerik:RadListBox>
Name : <asp:TextBox ID="txtName" runat="server"></asp:TextBox>
Age : <asp:TextBox ID="txtAge" runat="server" ></asp:TextBox>

1 Answer, 1 is accepted

Sort by
0
Nencho
Telerik team
answered on 25 Apr 2013, 01:41 PM
Hello Mahesh,

Please refer to this forum thread, where a similar topic is discussed.

Greetings,
Nencho
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
ListBox
Asked by
Mahesh
Top achievements
Rank 1
Answers by
Nencho
Telerik team
Share this question
or