Ok, so I'm trying to get the full path to the image, I have the skin turned on via:
And when I execute the following code:
I only get nulls in the Dev Console:
Is this OK?
Code:
<inherits name="com.smartgwtpower.SmartGwtPower"/>
Code:
GWT.log("grid.getBooleanTrueImage():" + grid.getBooleanTrueImage(), null); GWT.log("grid.getCheckboxFieldTrueImage():" + grid.getCheckboxFieldTrueImage(), null);
Code:
[INFO] grid.getBooleanTrueImage():null [INFO] grid.getCheckboxFieldTrueImage():null
Comment