I’m new to GXT, I’m developing a project by using GXT 2.0.1. I want to set field label for a list view. How to set field label.?
ListView<Stock> list2 = new ListView<Stock>();
list2.setDisplayProperty("name");
store = new ListStore<Stock>();
store.setStoreSorter(new StoreSorter<Stock>());
list2.setStore(store);
You can wrap the
ListViewin aContentPaneland then set the heading: