我的网页上有一个svg。右键单击时的元素应显示上下文菜单,其中包含从数据库中获取的数据。 元素的编写方式使得右键单击事件触发页面上的js函数。我需要从java脚本调用上下文菜单。有人可以帮我这个。我已经坚持了这个问题将近3天。 元素:
<rect/><text>L</text></g><g id="118" onmousedown="RightClickExecute(event,118)">
java脚本:
function RightClickExecute(event, id) {
if (event.button == 2) {document.getElementById("myForm:selectedEntityid").value = id;
document.getElementById("myForm:selectedObjectType").value = 'Entity';
document.getElementById("myForm:RightAction").click();
}
}
function showContextMenu(){
document.getElementById("myForm:contextMenuItemId").click();
}
XHTML:
<p:contextMenu id="contextMenuId" for="svgContainerPanel"
widgetVar="contextMenuVar" rendered="#{myBean.objectType=='Entity' ? true : false}">
<p:menuitem id="contextMenuItemId" ></p:menuitem>
</p:contextMenu>
<p:contextMenu event="click" id="contextMenu2Id" for="contextMenuId"
widgetVar="contextMenu2Var" model="#{my.model}" >
</p:contextMenu>
<p:commandButton id="RightAction" style="visibility:hidden"
action="#{myBean.populateMenu}" ajax="true"
type="submit" oncomplete="showContextMenu()"
update="contextMenuId,contextMenu2Id">
</p:commandButton>
<h:inputHidden id="selectedEntityid"
value="#{myBean.selectedEntityId}">
</h:inputHidden>
<h:inputHidden id="selectedObjectType"
value="#{myBean.objectType}">
</h:inputHidden>
答案 0 :(得分:3)
Primefaces的contextMenu没有选项来获取它,所以你可以使用jquery来做到这一点。如果要显示contextMenu,则必须将contextMenu的位置更改为Mouse的位置(默认情况下页面加载contextMenu,但它有css display:none,因此您需要更改css)。 Primefaces的contextMenu具有要在客户端中使用的widgetvar属性(它有方法show来显示它)。
Primefaces's contextMenu
要在客户端中使用widgetvar
属性(它有方法show来显示它)。
例如,当鼠标悬停到组件时,显示上下文菜单,其id为rongnk
,我有一个表单(id:form),一个contextmenu(id:xxx)
<script type="text/javascript">
//<![CDATA[
$(document).on('mouseover', '#form\\:rongnk', function(e) {
$(PrimeFaces.escapeClientId('form:xxx')).css({
top: e.pageY+'px',
left: e.pageX+'px'
}).show();
});
//]]>
</script>