We're using Smart GWT 2.2 nightly build from October 1, 2010.
We _must_ use a nightly build because we had issues with myDataSource.performCustomOperation() that were resolved in a nightly build.
Since using the new nightly builds, we cannot use:
to remove "Auto fit all columns" and "Auto fit" from the header context menu of the ListGrid. These need to be removed from the context menu because they aren't translated into Spanish, and they have unpredictable results (eg. sometimes the columns are just all set to minimum width and don't actually auto-fit to the grid width).
Is there another way of removing these options from the header context menu? As you can see from the screen shot, using:
will remove other default options from the context menu.
Thanks,
Chandra
We _must_ use a nightly build because we had issues with myDataSource.performCustomOperation() that were resolved in a nightly build.
Since using the new nightly builds, we cannot use:
Code:
myListGrid.setAutoFitFieldWidths
Is there another way of removing these options from the header context menu? As you can see from the screen shot, using:
Code:
myListGrid.setCanSort
Code:
myListGrid.setFreezeFields
Code:
myListGrid.setCanGroupBy
Thanks,
Chandra
Comment