Vaadin Grid Table : How to disable Sort Function and set the color of one column
I'm using Grid table in Vaadin for data representation. For that I'm trying to figure out the following two issues: 1.) How to disable the sort function in the Header of each column 2.) How to set the color of one column in a Grid table Morfic First of all, I find the Vaadin docs a good place to start looking for help. For the rest of the exercise, suppose we have a Grid with 3 simple columns c1, c2 & c3: Grid grid = new Grid(); grid.addColumn("c1", String.class); grid.addColumn("c2", String.class); grid.addColumn("c3", String.class); 1.) How to disable the sort function in the Header of each