Hi,
I am trying to create a menu with icon (in smartGWT) - and in fact received only a menu with title. For example, here I get no icon near "File":
thank you
I am trying to create a menu with icon (in smartGWT) - and in fact received only a menu with title. For example, here I get no icon near "File":
Code:
isc.Menu.create({
ID: "menu",
data: [
{title: "New"},
{title: "Open"},
]
});
isc.MenuButton.create({
ID: "menuButton",
title: "File",
menu: menu,
icon: "icons/16/document_plain_new.png"
});
thank you
Comment