Hi gurus,
I'm experiencing a flicker behavior when integrating RadNumericTextbox in RadGridview. This happens when pressing tabs on the textboxes then clicking them randomly then minimized and maximized the window. Tried to trap it in the OnValueChanged client-event (I have a code in that event so I suspected that the problem is in there) but unluckily it did not run the alert method I added so the OnValueChanged event is clean.
Another instance is copying data from excel to the textbox.
Below is my code snippet:
Hope to help me out in this problem.
Regards,
Jouie
I'm experiencing a flicker behavior when integrating RadNumericTextbox in RadGridview. This happens when pressing tabs on the textboxes then clicking them randomly then minimized and maximized the window. Tried to trap it in the OnValueChanged client-event (I have a code in that event so I suspected that the problem is in there) but unluckily it did not run the alert method I added so the OnValueChanged event is clean.
Another instance is copying data from excel to the textbox.
Below is my code snippet:
<telerik:GridTemplateColumn HeaderText="Week Ending" UniqueName="WeekEnding" HeaderStyle-Width="100px" ItemStyle-Width="100px" |
HeaderStyle-HorizontalAlign="Center" HeaderStyle-Font-Bold="True"> |
<HeaderTemplate> |
<span>Week Ending</span><br /> |
(<asp:Label ID="lblWeekEnding" runat="server" />) |
</HeaderTemplate> |
<ItemTemplate> |
<telerik:RadNumericTextBox ID="txtWeekEnding" Runat="server" Width="99%" style="text-align:center" |
ClientEvents-OnValueChanged="txt_OnValueChanged" IncrementSettings-InterceptArrowKeys="false" |
IncrementSettings-InterceptMouseWheel="false" ClientEvents-OnKeyPress="txt_OnKeyPress" TabIndex="1" /> |
</ItemTemplate> |
</telerik:GridTemplateColumn> |
<telerik:GridTemplateColumn HeaderText="MTD" HeaderStyle-Width="100px" ItemStyle-Width="100px" |
HeaderStyle-HorizontalAlign="Center" HeaderStyle-Font-Bold="True"> |
<HeaderTemplate> |
<span>MTD</span><br /> |
(<asp:Label ID="lblMTD" runat="server" />) |
</HeaderTemplate> |
<ItemTemplate> |
<telerik:RadNumericTextBox ID="txtMTD" Runat="server" Width="99%" style="text-align:center" IncrementSettings-InterceptArrowKeys="false" |
IncrementSettings-InterceptMouseWheel="false" ClientEvents-OnValueChanged="txt_OnValueChanged" |
ClientEvents-OnKeyPress="txt_OnKeyPress" TabIndex="2" /> |
</ItemTemplate> |
</telerik:GridTemplateColumn> |
Hope to help me out in this problem.
Regards,
Jouie