[Request] unfreezeAllRows() convenience function

I added the following code as a convenience for me. I’m doing a bit of work where users can define “views” where certain rows are always frozen, and I execute this when users change views. Any chance of adding this to the main branch?

unfreezeAllRows:function(){
this.define(“topSplit”, 0);
this.refresh();
}

We will add support for null as the first parameter of freezeRow. The following will unfreeze all rows:

dtable.freezeRow(null, false);