arrow_back history picture_as_pdf This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ~~NOTRANS~~ ~~Title: Automatic Open-Cell Editor Popups~~ JVx' standard behavior for starting cell editing is a double click on the table cell. The double click opens the editor and allows typing. If the cell contains a linked cell editor or date cell editor, you have to click on the small "down" arrow to open the popup (also key down works). Sometimes it would be helpful to open the popup immediately with the first click, or maybe with second click, on the cell. Following example configures a "standard" linked cell editor: <file java> UILinkedCellEditor lceLogLevel = new UILinkedCellEditor(); lceLogLevel.setLinkReference(new ReferenceDefinition(new String[] {"LOGLEVEL"}, mdbLevel, new String[] {"LEVEL"})); lceLogLevel.setTableHeaderVisible(false); //open popup automatically lceLogLevel.setAutoOpenPopup(true); //open on first click lceLogLevel.setPreferredEditorMode(UILinkedCellEditor.SINGLE_CLICK); </file> The popup will be opened immediately after first click on the cell.