internet explorer - CGridView disable ajax update on IE<10 -


can disable ajax update in cgridview on internet explorer < 10?

you can ie version manualy , add use in widget:

$isie10 = !preg_match('/(?i)msie [1-9]/',$_server['http_user_agent']);  $this->widget('zii.widgets.grid.cgridview', array(         .................         'ajaxupdate' => ($isie10?'id':false),         ................. )); 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -