I have a simple integer field type in a ListGrid and I want to suppress zeros so that if the value is zero the cell appears empty. Currently a 0 is shown. The field is editable and I would like the formatting to apply whether the field is being edited or not. I found ListGridField.setCellFormatter() but the documentation for that method says ...
But I don't see any mention of "formatEditorValue" in the ListGridField documentation. What am I missing?
Note: this formatter will not be applied to the values displayed in cells being edited. The com.smartgwt.client.widgets.grid.ListGridField.formatEditorValue is provided for that purpose.
Comment