Hi
I have countered a problem using your radgrid, ajax and webusercontrol on insert
Im trying to create a new record using the built in "add new record" from CommandItemDisplay="Top". A webusercontrol shows up a everything is fine.
But:
In my usercontrol i have a textbox where I have a OnTextChanged event which sets up some settings for the user.
Now when i hit the tab-button the event fires correctly but after that my usercontrol GUI is locked. That is when i try to click on any other textbox inside my usercontrol is gets the "focus" or "pipe blinking" but i cant enter any text.
If I mark anything outside the usercontrol or have a button in the usercontrol that gets the focus it allows me to use the textboxes again.
I've trying running the usercontrol in another .aspx without it beeing used in a radgrid and that works fine. It is also working in the grid when im not using any Ajax.
This is how I use the Ajax:
The problem also occurs when using ms updatepanel.
So im thinking if there could be some threading that kinda lock the control.
Hope you see my problem.
Thanks in advance
I have countered a problem using your radgrid, ajax and webusercontrol on insert
Im trying to create a new record using the built in "add new record" from CommandItemDisplay="Top". A webusercontrol shows up a everything is fine.
But:
In my usercontrol i have a textbox where I have a OnTextChanged event which sets up some settings for the user.
Now when i hit the tab-button the event fires correctly but after that my usercontrol GUI is locked. That is when i try to click on any other textbox inside my usercontrol is gets the "focus" or "pipe blinking" but i cant enter any text.
If I mark anything outside the usercontrol or have a button in the usercontrol that gets the focus it allows me to use the textboxes again.
I've trying running the usercontrol in another .aspx without it beeing used in a radgrid and that works fine. It is also working in the grid when im not using any Ajax.
This is how I use the Ajax:
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="radGRegisterTime"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="radGRegisterTime" LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="radGRegisterTimeSecondaryTasks"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="radGRegisterTimeSecondaryTasks" LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Height="75px" Width="75px" Transparency="10"> |
| <img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>' style="border:0;" /> |
| </telerik:RadAjaxLoadingPanel> |
The problem also occurs when using ms updatepanel.
So im thinking if there could be some threading that kinda lock the control.
Hope you see my problem.
Thanks in advance