I want users to be able to resize the Value column of my property grid, but no luck with the settings. Tried all kinds of grid column properties that came to my mind, like:
fixed: false,
resizable: true
- they do not work. Googled, but did not find anything related to my problem. I can only change it programmatically with this code in a listener:
this.columns[0].setWidth(160);
Exter source
share