#master_checkbox

  1. It is possible define an event onclick on a #master_checkbox?

    2) In the static smartrendering mode the #master_checbox select all rows or only those that are render?



    thanks
  1. It is possible define an event onclick on a #master_checkbox?

    There is no event, but you can update dhtmlxgrid_filter.js in any necessary way

    dhtmlXGridObject.prototype._in_header_master_checkbox=function(t,i){
        t.innerHTML="";
        t.firstChild.onclick=custom_code;   // this line can be added

    >>2) In the static smartrendering mode the #master_checbox select all rows or only those that are render?
    This is known limitation
    In smart-rendering mode, not parsed rows stored as raw XML, and to modify it in any case - it need to be parsed, which will kill any performance gained by smart-rendering usage.