Examples of showAt()


Examples of autotest.common.ui.ContextMenu.showAt()

                queueEntryFilterData.put("extra_where", new JSONString(sql));
                cloneJob(true, queueEntryFilterData);
            }
        });

        menu.showAt(cloneButton.getAbsoluteLeft(),
                cloneButton.getAbsoluteTop() + cloneButton.getOffsetHeight());
    }

    private void cloneJobOnSelectedHosts() {
        Set<JSONObject> hostsQueueEntries = selectionManager.getSelectedObjects();
View Full Code Here

Examples of com.extjs.gxt.ui.client.widget.menu.Menu.showAt()

      }
    });
    contextMenu.add(showAllElements);
    showAllElements.setEnabled(enabled);
   
    contextMenu.showAt(x, y);
  }

  public void rightClicked(XAxisItem item, List <XAxisItem> roots, String viewId, String axisId,
      boolean column, int x, int y) {
    // TODO Auto-generated method stub
View Full Code Here

Examples of com.gwtext.client.widgets.menu.Menu.showAt()

                            showDirectLink((EntityData) node.getUserObject());
                        }
                    });
                    contextMenu.addItem(menuShowDirectLink);

                    contextMenu.showAt(e.getXY()[0] + 5, e.getXY()[1] + 5);
                }
            };
        }

View Full Code Here

Examples of com.gwtext.client.widgets.menu.Menu.showAt()

                String value = record.getAsString(field);
                if (value != null && !"".equals(value)) {
                    Menu contextMenu = new DeleteContextMenu(
                            "Unset value (i.e. set to 'Unknown')", "images/unknown_check.gif",
                            record, colIndex, ValueType.Boolean);
                    contextMenu.showAt(e.getXY()[0] + 5, e.getXY()[1] + 5);
                }
            }
        }
    }
View Full Code Here

Examples of com.gwtext.client.widgets.menu.Menu.showAt()

                }
                if (ValueType.Instance.equals(ValueType.valueOf(valueType))) {
                    Menu contextMenu = new DeleteContextMenu(
                            "Remove this value", "images/delete_small_16x16.png",
                            record, colIndex, ValueType.valueOf(valueType));
                    contextMenu.showAt(e.getXY()[0] + 5, e.getXY()[1] + 5);
                }
            }
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.