I haven't worked in GWT at all ,but i have a GWT issue to fix. I would
be glad if i could get some help.
When we open normal pages in application and right clicking on drop
down list of Main menu , IE default right click context menu options
pop- up.That is required.
But when we are in GWT pages and when we right click on drop down list
of Main menu options,IE default right click context menu options
doesn't show up.
This is how the hyperlink is included in JSP page for GWT pages:
</li>
<li onmouseover="javascript:SiteNavigationBar.over(this)"
onmouseout="javascript:SiteNavigationBar.out(this)" id="siteNav-
flexField" >
<a href="/gwt/com.aspentech.imos.gwt.flexfield.FlexField/
FlexField.html">
<bean:message key="sitenav.flexibleFieldsConfiguration"/>
When i googled ,i found this piece of code :
addDomHandler(new ContextMenuHandler()
{
@Override
public void onContextMenu(ContextMenuEvent event)
{
showMenu();
event.preventDefault();
}
}, ContextMenuEvent.getType());
But i'm not sure how to link this code with the JSP page.Hoping to see
some response.
--
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.