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:
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)
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");
}
});
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)
Comment