I have some problem with using javascript in chart.
I one of my graphic i link to chart javascript function 'j-RefreshGrid-{0}, {1}, {2}, {3}' .This function do postback.
And i have a problem, if I click on chart element very fast, there are many post back are created, and some times ISS are crashed.
How I can set interval or max click values that was processed (Something like if i click 10 times per second only first click are proccess.)?
Page 1 of 1
How block click Event Fast click on chart problem.
Other Replies To This Topic
#2
Posted 30 December 2009 - 03:15 AM
...
Greetings,
What you need to do is create an intermediate function (say RefreshGridEx,) and call it from your XML instead of the orgiginal RefreshGrid function.
Now, from the new RefreshGridEx function call the original RefreshGrid function but after doing a check whether it previous calls to RefreshGridEx method has been at a rate of 10 times per second or not.
Greetings,
What you need to do is create an intermediate function (say RefreshGridEx,) and call it from your XML instead of the orgiginal RefreshGrid function.
Now, from the new RefreshGridEx function call the original RefreshGrid function but after doing a check whether it previous calls to RefreshGridEx method has been at a rate of 10 times per second or not.
Other Replies To This Topic
Page 1 of 1

Back to top
MultiQuote