IntegerColumn not available in GWT?
I am new to GWT and I am trying to make a simple table in GWT. The table has string and integer types. However, GWT has only TextColumns whic开发者_开发问答h returns only Strings.
But there is no "IntegerColumns" which returns Integers, so what's the easiest way to design it ?
Right now I convert Integers to Strings but this solution is not suitable for sorting the columns.
Why don't you use Grid? Grid is able to store objects as rows; For example you want to have a look Grid
And maybe you'd like to see GXT samples
精彩评论