How do we convert GWT menuitem into hyperlink. As menuitem sends the data
in terms of text,the rightclick context menu options doesn't appear in IE.
We want rightclick context menu options like "Open In New Tab" to appear
for menu items in GWT pages.Please let me know how do we convert following
code ,such that menuitems behave like hyperlink:
*private* MenuItem getInventoryTargetAdminMenuItem()****
{****
MenuItem menuItem = *new* MenuItem( *MESSAGES*
.siteNavigatorInventoryTargetAdmin(),****
*new* Command()****
{****
*public* *void* *execute()*****
{****
*navigateInventoryTargetAdmin**()*;****
}****
} );****
menuItem.getElement().setId( Constants.*MNU_INVENTORY_TARGET_ADMIN* );**
**
*return* menuItem;****
}
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.