Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
I have created 20 variables and did the testing on both Ajax and the IE,
Ajax we get the results in 2 sec whereas on IE we are getting the result in 10 sec.
can someone help me what could be the reason for this and How I can improve the performances on IE .
Thanks & Regards,
MVV Satish.
I guess this could vary depending on your setup. For graphical charts in AJAX, the rendering is performed on the server and then a bitmap is sent to the client, whereas for plugin the raw data are sent to the client that then performs the rendering. Charts with many data points would generally favor AJAX by having less data to transfer as well as no client side work for rendering.
I suspect actions are handled on the server for AJAX, but in client for plugin, resulting in lots of more networktraffic for the plugin in the case of the 20 actions button, but that trigger actions are always handled on the server making it similar for both client types. Depending on your connection to the server this might be more or less notisable.