(tested with the latest nightlies)
SmartClient 8.3 allows to change a canvas shadow dynamically via setShowShadow()
SmartGWT 3.1 prohibits to call setShowShadow after component creation by calling setShowShadow with allowPostCreate = false:
Any chance to "unlock" the feature to change the shadow after component creation, as it is working fine via the SmartClient API?
SmartClient 8.3 allows to change a canvas shadow dynamically via setShowShadow()
SmartGWT 3.1 prohibits to call setShowShadow after component creation by calling setShowShadow with allowPostCreate = false:
Code:
public void setShowShadow(Boolean showShadow) throws IllegalStateException { setAttribute("showShadow", showShadow, false); }
Comment