Hello, I have a issue about resize columns in grid.
If I set four fields in columns like this:
columns : [
{field : "id", title : "id", width : 150 },
{field : "index", title : "index", locked : true, width : 150 },
{field : "name", title : "name", width : 150, hidden: true },
{field : "date", title : "date", width : 150 }
]
then set resizable to "true", I can resize column "id" and "index" normally but I can't resize column "date" (seems it's after a hidden column).
Is this a stander rule of Grid or TreeList?