onColumnResize

срабатывает, когда изменилась ширина колонки

void onColumnResize(string id,number newWidth,number oldWidth,boolean user_action);
idstringID колонки
newWidthnumberновая ширина
oldWidthnumberпредыдущая ширина
user_actionbooleantrue, если ширину колонки изменил пользователь через интерфейс (перетащил границу между колонками)

Example

$$("table").attachEvent("onColumnResize",
    function(id,newWidth,oldWidth,user_action){
        alert("New column width: " + this.getColumnConfig(id).width );
    });

Наверх
If you have not checked yet, be sure to visit site of our main product Webix html5 framework and page of tree table ui product.