>From the below thread
https://groups.google.com/forum/#!searchin/google-web-toolkit/hiding$20column$20in$20celltable/google-web-toolkit/3XFe2jwI2ks/E_hDjEej5E8J

 Lot of suggestion is to use* add/removeColumnStyleName* but i used the 
same in my code but still not able to hide the column.See the below code 
snippet..

*Code:*
TextColumn<ContactInfor> empIdTxt = new TextColumn<ContactInfor>() {
@Override
public String getValue(ContactInfor object) {
return object.empId;
}
};
cellTable.addColumn(empIdTxt, "EMPLOYEE ID");

TextColumn<ContactInfor> addressTxt = new TextColumn<ContactInfor>() {
@Override
public String getValue(ContactInfor object) {
return object.address;
}
};
cellTable.addColumn(addressTxt, "ADDRESS");
cellTable.setRowData(loadContactInfo());
*cellTable.addColumnStyleName(1, "hide"); // added stylename to the Column 
with index 1*
*CSS:*
Added this class in stylesheet
 * .hide* {
display: none;
    }   
Is any other think is missed out here?

On Tuesday, March 24, 2015 at 4:13:55 PM UTC+5:30, Abdullah wrote:
>
> Hi,
> How to hide the columns in gwt Cell table?I need column for grouping 
> purpose but don't want to show in table.Is there any way to hide..Any clue?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Reply via email to