Is there a way to get the text from an element in a ButtonSelect into a Ribbon ?
When i use " myRibbon.attachEvent(“onClick”, function(id) {}); ", i get the ID without any problem, but when i try to use this id and to get the text with " myRibbon.getItemText(itemId); ", the value returned is null…
myRibbon.attachEvent(“onClick”, function(itemId) {
var text = myRibbon.getItemText(itemId);
alert(text); // value null returned
});