我正在使用Telerik的RadListBox控件进行Web应用程序开发,想知道如何通过TextBox控件向RadListBox添加行,下面是我的代码片段:
<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>
<asp:Button ID="btnAdd" runat="server" Text="Add" OnClick="btnAdd_Click" />
<asp:Button ID="btnDel" runat="server" Text="Delete" OnClick="btnDel_Click"/>
单击“添加”按钮时,从两个TextBox获取输入并绑定到RadListBox。
要删除,请从RadListBox中选择行,然后单击“删除”按钮,从RadListBox中删除所选行。
我的问题是如何添加和删除行?
先谢谢你。
答案 0 :(得分:0)
您好,您可以创建数据表和数据行。然后将文本框值添加到dararow。那么你可以将这个数据表绑定到RadListBox。要删除,您需要选择ListItem索引并从数据表中删除该行,然后再绑定到RadListBox。它会工作..
另请查看以下链接帖子中的答案。你会明白插入行