Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ColumnConfig Hidden column is visible #549

Open
GoogleCodeExporter opened this issue Jan 20, 2016 · 0 comments
Open

ColumnConfig Hidden column is visible #549

GoogleCodeExporter opened this issue Jan 20, 2016 · 0 comments

Comments

@GoogleCodeExporter
Copy link

What steps will reproduce the problem?
1. ColumnConfig cartonItemUid = new ColumnConfig("", "CARTON_ITEM_NO", 15); 
   cartonItemUid.setHidden(true); 

What is the expected output? 
The column, cartonItemUid, should be hidden from the end-user.

What do you see instead?
The column, cartonItemUid, is visible.

The two different solution tried(but not worked):
01. ColumnConfig cartonItemUid = new ColumnConfig("", "CARTON_ITEM_NO", 15); 
    cartonItemUid.setHidden(true); 
    Hidden hidden = new Hidden(); 
    cartonItemUid.setEditor(new GridEditor(hidden)); 

02. columnModel.setHidden(5, true); // In addition to calling the setHidden() 
on ColumnConfig, I called it on ColumnModel as well. 

My current version of the library is: 2.0.4.
Is this a bug in the GWT-Ext library?

Regards,
Giri

Original issue reported on code.google.com by girithar...@gmail.com on 27 Aug 2013 at 7:01

Attachments:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant