I'm using SmartGWT Power 2.5, using both Chrome and IE.
I've created a field in a list grid with type BINARY:
but the view & download icons never appear on my grid, just the filename. I don't get any errors or warnings.
There don't seem to be any examples in the showcase of the BINARY field, and only the brief description in the javadocs.
Do I need to do something to make the icons appear?
I've created a field in a list grid with type BINARY:
Code:
final ListGridField getField = new ListGridField("filename", "Log Files"); getField.setType(ListGridFieldType.BINARY);
There don't seem to be any examples in the showcase of the BINARY field, and only the brief description in the javadocs.
Do I need to do something to make the icons appear?
Comment