Hello all,
I am having an issue using the RadNumericTextbox with UpdatePanel. On every other postback, it would display the below message in the UpdatePanel. I am using the RadNumericTextbox in a RadGrid.
The Message: 9274|updatePanel|ctl00_ctl26_g_ba5d72b6_620b_453e_a4a2_8e74af493901_ctl00_ctl00_ctl26_g_ba5d72b6_620b_453e_a4a2_8e74af493901_ctl00_grdItemsPanel|
RadNumbericTextbox Settings:
Another approach but failed: Instead of using the UpdatePanel, I tried using RadAjaxManager but it is not doing a PostBack when the RadNumericTextBox number changes.
Has anyone experienced this behavior and have suggestions?
I am having an issue using the RadNumericTextbox with UpdatePanel. On every other postback, it would display the below message in the UpdatePanel. I am using the RadNumericTextbox in a RadGrid.
The Message: 9274|updatePanel|ctl00_ctl26_g_ba5d72b6_620b_453e_a4a2_8e74af493901_ctl00_ctl00_ctl26_g_ba5d72b6_620b_453e_a4a2_8e74af493901_ctl00_grdItemsPanel|
RadNumbericTextbox Settings:
<telerik:RadNumericTextBox
ShowSpinButtons="true"
IncrementSettings-InterceptArrowKeys="true"
IncrementSettings-InterceptMouseWheel="true"
Width="35px"
runat="server"
ID="qty"
MaxValue="99"
MinValue="1"
Value="1"
AutoPostBack="true"
OnTextChanged="qty_TextChanged">
<NumberFormat DecimalDigits="0" />
</telerik:RadNumericTextBox>
Another approach but failed: Instead of using the UpdatePanel, I tried using RadAjaxManager but it is not doing a PostBack when the RadNumericTextBox number changes.
Has anyone experienced this behavior and have suggestions?