This is a migrated thread and some comments may be shown as answers.

radajaxmanager

1 Answer 44 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Webster Velasco
Top achievements
Rank 2
Webster Velasco asked on 23 Apr 2010, 04:19 PM
hi

how cn i diseabled radtabstrip and datagrid when my ajaxmanager onrequeststart fired?

     function OnRequestStart(sender, args)
     {
             var Bck = document.getElementById("<%= btnBck.ClientID %>");
         var Frwd = document.getElementById("<%= btnFrwd.ClientID %>");
         var tab = document.getElementById("<%= rtsInsertPratica.ClientID %>");
         var p = document.getElementById("<%= grdProd.ClientID %>");
         var i = document.getElementById("<%= grdInsoluti.ClientID %>");
                
         Bck.disabled = true;
         Frwd.disabled = true;        
         tab.disabled = true;
         p.disabled = true;
         i.disabled = true;       
     }
       

the code above doesnt work on firefox and if i click the tabstrip my routine(which is running) goes in error..

thanks

1 Answer, 1 is accepted

Sort by
0
Iana Tsolova
Telerik team
answered on 26 Apr 2010, 03:46 PM
Hi Webster,

You can disable all tabs of the RadTabStrip on the client by calling its disable() client-side event.
Refer to the below article for more information on how to get reference to the RadTabStrip client-side object and how to use its client-side API in the below article:

http://www.telerik.com/help/aspnet-ajax/tab_clientsideradtabstrip.html

Greetings,
Iana
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
Ajax
Asked by
Webster Velasco
Top achievements
Rank 2
Answers by
Iana Tsolova
Telerik team
Share this question
or