Hello,
I use SmartGWT Power (SC_SNAPSHOT-2011-02-07/PowerEdition Deployment 2011-02-07)
When I load my app, which shows a simple ListGrid, on (mobile and normal) Safari, some cells are blank. The ListGrid uses cellformatters, and the cellformatters that are like the one below, yield this not showing behavior.
In Firefox it DOES work, ie. DOES show the data that is in them.
I use SmartGWT Power (SC_SNAPSHOT-2011-02-07/PowerEdition Deployment 2011-02-07)
When I load my app, which shows a simple ListGrid, on (mobile and normal) Safari, some cells are blank. The ListGrid uses cellformatters, and the cellformatters that are like the one below, yield this not showing behavior.
In Firefox it DOES work, ie. DOES show the data that is in them.
Code:
f.setCellFormatter(new CellFormatter() { public String format(Object value, ListGridRecord record, int rowNum, int colNum) { if (value == null) return null; //convert < and >'s to > etc. String val = com.smartgwt.client.util.StringUtil.convertTags( value.toString(), "", ""); return val; } });
Comment