Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    SmartClient 8.3 vs. SmartGWT 3.1 inconsistency for Canvas.setShowShadow()

    (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:
    Code:
    public void setShowShadow(Boolean showShadow)  throws IllegalStateException {
        setAttribute("showShadow", showShadow, false);
    }
    Any chance to "unlock" the feature to change the shadow after component creation, as it is working fine via the SmartClient API?

    #2
    Done in 3.1 and 4.0. Try the next nightly build (March 2 or greater)

    Regards
    Isomorphic Software

    Comment

    Working...
    X