I have a TreeList that contains a TextBox and an accompanying update button.
If I change the textbox and click the Update button, everything works as expected.
If I change the textbox and press Enter, the focus is stuck in the TextBox. When I then click a (submit)button outside of the TreeList, no event is triggered. If I first click anywhere outside the TextBox and outside the button and after that click the button, the click event is fired.
Of course, this problem only occur in IE (9), not in Firefox.
Anyone with a clue to why this happen?
If I change the textbox and click the Update button, everything works as expected.
If I change the textbox and press Enter, the focus is stuck in the TextBox. When I then click a (submit)button outside of the TreeList, no event is triggered. If I first click anywhere outside the TextBox and outside the button and after that click the button, the click event is fired.
Of course, this problem only occur in IE (9), not in Firefox.
Anyone with a clue to why this happen?
<
telerik:TreeListTemplateColumn
HeaderText
=
"Quantity"
>
<
ItemTemplate
>
<
asp:Panel
ID
=
"Panel_Quantity"
runat
=
"server"
DefaultButton
=
"RadButton_UpdateCart"
>
<
asp:Label
ID
=
"Label_Quantity"
runat
=
"server"
Text='<%# Eval("Quantity","{0:N0}") %>'
Width="25px"></
asp:Label
>
<
asp:TextBox
ID
=
"TextBox_Quantity"
runat
=
"server"
Text='<%# Eval("Quantity","{0:N0}") %>'
Width="25px"></
asp:TextBox
>
<
telerik:RadButton
ID
=
"RadButton_UpdateCart"
runat
=
"server"
Text
=
""
OnClick
=
"RadButton_UpdateCart_Click"
CommandArgument='<%#Eval("CartItemID") %>' Icon-PrimaryIconCssClass="rbRefresh" CausesValidation="false"
Width="25px">
</
telerik:RadButton
>
</
asp:Panel
>
</
ItemTemplate
>
<
HeaderStyle
HorizontalAlign
=
"Left"
Width
=
"80px"
/>
<
ItemStyle
HorizontalAlign
=
"Left"
/>
</
telerik:TreeListTemplateColumn
>