Announcement

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

    Cant seem to change the title on an IconMenuButton

    I have an IconMenuButton on a ToolStrip , when you click the test button I want it to change the title to "New Title" - see test case. But the title is not changing. It doesn't seem to make a difference if I have an icon or not either.

    Test Case:
    Code:
    isc.ToolStrip.create({
        width: "100%", height:24, 
        members: [
          isc.IconMenuButton.create({
            ID: "menuButton",
            title: "File"
          })
        ]
    });
    
    isc.Button.create({
        title: "test",
        top: 200,
        click: function () {
            menuButton.setTitle("newtitle");
        }
    });
    Problem occurs using following browsers:
    Google Chrome 25.0.1364.152 m
    Internet explorer 9.0.8112.16421
    SmartClient Version: v8.2p_2012-12-18/LGPL Development Only (built 2012-12-18)

    #2
    Since this involved an internal change, we've fixed it in 8.2p and the changes will hit the nightlies from March 8 - note, however, that this issue, among others, was already fixed long ago in 8.3p and 9.0d.

    You should upgrade to a more recent version as soon as possible because 8.2p is a patch-only build, so there's no guarantee that any other issues you might find can be ported back.

    Comment

    Working...
    X