I Need to make more than one ajax call at a time to manage the DB -
I want a "all in the grid" checkbox so that the data can be updated through ABS via DB ..but the reason I can not do this for the ban of 2 calls at a time. Help me solve this problem.
Your question is a bit unclear, but I think you are sending one when the user " Check All "button, then Ajax request for each checkbox,
If so, then you should modify your code, so only an Ajax request has been sent; Instead of saying " oh oh, all checkboxes have been checked, make your content " instead of saying " a check box has been checked " .
 
 In this way, what the user does, you have only one Ajax request, which means: 
- Fast
 - No < Em> (well problem with sign dialog
 - No problems with many Ajax requests in parallel
 - No threat to a request on this server
 - Low load (and client) on the server
 
(But, yes, I agree, its meaning That is, you have to make some changes to your code; -))
Comments
Post a Comment