Hello sir,
I am using RadListBox with its ItemTemplate like shown below:
<telerik:RadListBox runat="server" ID="RadListOrderColumns" AllowReorder="true"
Height="200px" Width="350px" TransferMode="Move"
SelectionMode="Multiple">
<ItemTemplate>
<table>
<tr>
<td>
<asp:Label runat="server" Width="70px" Text='<%# DataBinder.Eval(Container, "DataItem.Database_Name") %>' ></asp:Label>
</td>
<td>
<input id="Text1" type="text" value="" />
</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadListBox>
*******************************************************************************************************
So, when i enter any thing in that input (text box) and when i try to use 'delete' key it does not work.
i can not delete anything using 'delete' key whereas 'backspace' works fine.
This is a strange problem, i have tried to use 'RadTextBox' and 'asp:textbox' in place of 'input' still i am facing same problem.
Please help, i can't understand how delete key stops working in a textbox.
I am using RadListBox with its ItemTemplate like shown below:
<telerik:RadListBox runat="server" ID="RadListOrderColumns" AllowReorder="true"
Height="200px" Width="350px" TransferMode="Move"
SelectionMode="Multiple">
<ItemTemplate>
<table>
<tr>
<td>
<asp:Label runat="server" Width="70px" Text='<%# DataBinder.Eval(Container, "DataItem.Database_Name") %>' ></asp:Label>
</td>
<td>
<input id="Text1" type="text" value="" />
</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadListBox>
*******************************************************************************************************
So, when i enter any thing in that input (text box) and when i try to use 'delete' key it does not work.
i can not delete anything using 'delete' key whereas 'backspace' works fine.
This is a strange problem, i have tried to use 'RadTextBox' and 'asp:textbox' in place of 'input' still i am facing same problem.
Please help, i can't understand how delete key stops working in a textbox.