public class FComboBox extends FInputPanel implements InitialFocusCandidateI, FormElementWithDisplayPropertyI, AsyncRefreshExecutorI
<ComboBox property="TheAttribute" selectOutOf="SomeRelationAttributeOfTheCurrentBO" [format="Bezeichnung' blablabla '(Bemerkung)"] [sortBy="SomeAttribute"]/>All BOs from the relation "SomeRelationAttributeOfTheCurrentBO" are formatted with the CBOFormat from "format" and added as choice entries for the combobox. When an entry is selected, the value for TheAttribute will be set to the corresponding BO. Entries are updated everytime the combobox is refresh()ed or some change to SomeRelationAttributeOfTheCurrentBO happens in the current Transaction.
<ComboBox property="TheAttribute" [selectEntity="SomeAssignableEntity"] whereClause="Name = 'bla' AND NOT Ldel" [format="Bezeichnung' blablabla '(Bemerkung)"] [sortBy="SomeAttribute"]/>All "SomeAssignableEntity" BOs are queried (using the whereClause for the OQL query) and are formatted with the CBOFormat from "format" and added as choice entries for the combobox. When an entry is selected the value for TheAttribute will be set to the corresponding BO. Entries are re-queried and updated everytime the combobox is refresh()ed
<ComboBox property="TheAttribute"><choiceScript>// A Groovy script which gets some values and adds them with model.addEntry( value )</choiceScript></ComboBox>Adds entries using the given Groovy script. Script is evaluated everytime the combobox is refresh()ed.
<ComboBox property="TheAttribute" selectOutOf="SomeRelationAttributeOfTheCurrentBO" [format="Bezeichnung' blablabla '(Bemerkung)"] [sortBy="SomeAttribute"]/>All BOs from the relation "SomeRelationAttributeOfTheCurrentBO" are formatted with the CBOFormat from "format" and added as choice entries for the combobox. When an entry is selected the value for TheAttribute will be set using the string value of the entry converted to the type of TheAttribute via TheAttribute.getType().stringToValue(...). Entries are updated everytime the combobox is refresh()ed or some change to SomeRelationAttributeOfTheCurrentBO happens in the current Transaction.
<ComboBox property="TheAttribute" [selectEntity="SomeEntity"] whereClause="Name = 'bla' AND NOT Ldel" [format="Bezeichnung' blablabla '(Bemerkung)"] [sortBy="SomeAttribute"]/>All "SomeEntity" BOs are queried (using the optional whereClause for the OQL query) and are formatted with the CBOFormat from "format" and added as choice entries for the combobox. When an entry is selected the value for TheAttribute will be set using the string value of the entry converted to the type of TheAttribute via TheAttribute.getType().stringToValue(...). Entries are re-queried and updated everytime the combobox is refresh()ed
<ComboBox property="TheAttribute"><choiceScript>// A Groovy script which gets some values and adds them with model.addEntry( value )</choiceScript></ComboBox>Adds entries using the given Groovy script. Script is evaluated everytime the combobox is refresh()ed.
Optional boolean attribute: "nullable"; if set to true/yes will automatically add a null entry to the combobox. Use together with (optional) "nullChoiceTitle" to set the string to be used as label for that null choice entry (empty string will be used if not given).
Optional string attribute: "autoSelect"; the TheAttribute.getType().stringToValue(...) compatible representation of the entry to be autoselected when "TheAttribute" is still null.
Variables for the choiceScript:
myActions
XMLConfigureInfo
inhibitFocusChange, SCROLLING_MODE_ANY, SCROLLING_MODE_HORIZONTAL_ONLY, SCROLLING_MODE_VERTICAL_ONLY, TEXTURE_CENTERED, TEXTURE_REPEAT
TOOL_TIP_TEXT_KEY, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT
ALL_ACTIONS, AVAILABLE_ACTION_KIND, CONTEXTMENU_ACTION_KIND, LOCAL_ACTION_KIND, MENU_ACTION_KIND, NO_LOCAL_ACTION_KIND, NO_TOPMDI_ONLY_ACTION_KIND, NOT_AVAILABLE_ACTION_KIND, REFRESH_FROM_TRANSACTION, REFRESH_FROM_USER, SHORTCUT_ACTION_KIND, TOOLBAR_ACTION_KIND, TOPMDI_ONLY_ACTION_KIND
Constructor and Description |
---|
FComboBox(FormContextI _ftx,
electric.xml.Element _confroot) |
Modifier and Type | Method and Description |
---|---|
void |
buildGUI() |
java.lang.Object |
calculateDisplayValue(AsyncRefreshRequestI r) |
boolean |
calculationMightBeExpensive() |
void |
close() |
void |
disable() |
void |
enable() |
java.util.HashMap |
getAttributeMap()
Returns the map of attributes supported by this component.
|
java.lang.String |
getAutoSelect() |
electric.xml.Element |
getChoiceScriptEl() |
java.lang.String |
getDisplayProperty() |
java.util.HashMap |
getElementMap()
Returns the map of elements supported by this component.
|
java.lang.String |
getFormat() |
javax.swing.JComponent |
getInitialFocus() |
javax.swing.JComponent |
getJComponent()
Returns the "JComponent" associated with this form element.
|
java.lang.String |
getNullChoiceTitle() |
java.awt.Dimension |
getPreferredSize() |
java.lang.String |
getProperty()
Class for passing current mandatory and enabled state from calculateDisplayValue to renderDisplayValue.
|
java.lang.String |
getSelectEntity() |
java.lang.String |
getSelectOutOf() |
java.lang.String |
getSortBy() |
java.lang.String |
getWhereClause() |
void |
handleAutoSelectA(electric.xml.Attribute a) |
void |
handleChoiceScriptE(electric.xml.Element el) |
void |
handleChooseOnlyA(electric.xml.Attribute a) |
void |
handleDisplayFormatA(electric.xml.Attribute a) |
void |
handleDisplayPropertyA(electric.xml.Attribute a) |
void |
handleFormatA(electric.xml.Attribute a) |
void |
handleNullableA(electric.xml.Attribute a) |
void |
handleNullChoiceTitleA(electric.xml.Attribute a) |
void |
handlePropertyA(electric.xml.Attribute a) |
void |
handleRelationNameA(electric.xml.Attribute a) |
void |
handleSelectEntityA(electric.xml.Attribute a) |
void |
handleSelectOutOfA(electric.xml.Attribute a) |
void |
handleShowIdA(electric.xml.Attribute a) |
void |
handleSortByA(electric.xml.Attribute a) |
void |
handleSuppressDuplicatesInNonRelationModeA(electric.xml.Attribute a) |
void |
handleWhereClauseA(electric.xml.Attribute a) |
boolean |
isChooseOnly() |
boolean |
isShowId() |
boolean |
isSuppressDuplicatesInNonRelationMode() |
void |
lockDisplayValue() |
void |
refresh() |
void |
refresh(int from) |
void |
renderDisplayValue(AsyncRefreshRequestI r,
java.lang.Object value) |
void |
restoreLockstateOfDisplayValue() |
void |
setAutoSelect(java.lang.String $5) |
void |
setChoiceScriptEl(electric.xml.Element $10) |
void |
setChooseOnly(boolean $11) |
boolean |
setEditable(boolean b) |
void |
setEnabled() |
void |
setEnabled(boolean b) |
void |
setFormat(java.lang.String $3) |
void |
setNullChoiceTitle(java.lang.String $8) |
void |
setProperty(java.lang.String $2) |
void |
setSelectedItem(java.lang.Object _obj) |
void |
setSelectEntity(java.lang.String $9) |
void |
setSelectOutOf(java.lang.String $6) |
void |
setShowId(boolean $12) |
void |
setSortBy(java.lang.String $7) |
void |
setSuppressDuplicatesInNonRelationMode(boolean $13) |
void |
setWhereClause(java.lang.String $4) |
void |
syncImpl() |
calculateMandatory, getAlsoMandatoryIf, getBaseline, getDefaultActionMap, handleAlsoMandatoryIfE
_refreshActions, action_editForm_available, action_editForm_enabled, action_editForm, action_refreshView_available, action_refreshView, action_reopenView_available, action_reopenView_enabled, action_reopenView, addBeanA, addFormElementListener, addHandleA, addHandleE, afterSave, afterSetValue, assureTransferHandler, beforeSave, beforeSetValue, callLog, cancelPendingRefreshRequests, checkEditable, checkVisible, evalScript, evalScript, evalScript, evalScript, evalScript, fhide, focusNextComponent, focusPreviousComponent, fshow, getActions, getActionsOfKind, getActionsOfKind, getBO, getConfRoot, getCtx, getDebugName, getFormActions, getFtx, getInstrumentedSchema, getLastRefreshRequest, getMaximumSize, getMinimumSize, getMissingPropertiesPolicy, getRefreshRequestsPending, getSchema, handleActionE, handleAttributes, handleDropAllowedIfE, handleEditableA, handleEditableIfE, handleElement, handleElements, handleElements, handleElements, handleImpliedA, handleMaximumSizeA, handleMaxSizeA, handleMinimumSizeA, handleMinSizeA, handleMissingPropertiesPolicyA, handleNameA, handleNewElement, handleNewElement, handleNewElement, handleOnAfterSaveE, handleOnAfterSetValueE, handleOnBeforeSaveE, handleOnBeforeSetValueE, handleOnConstructionE, handleOnDropE, handleOnFocusGainedE, handleOnFocusLostE, handleOnMDIActivateE, handleOnMDICloseE, handleOnMDIDeactivateE, handleOnMDIOpenE, handleOnRefreshE, handleOnSyncE, handlePreferredSizeA, handlePrefSizeA, handleScriptE, handleVirtualPropertyE, handleVisibleIfE, hasPreferredSizeOverride, invokeAction, invokeAction, isClosed, isDebug, isDefinedEditable, isEditable, isExplicitEditable, isGUIBuilt, isImpliedElement, isInputPossible, isShown, mdiActivate, mdiClose, mdiDeactivate, mdiOpen, postConstructor, postInit, postRefresh, postRefresh, postRefresh, processFocusVeto, processFocusVeto, queueDelayedRefresh, queueDelayedRefresh, reallyHandleVirtualPropertyE, refreshActions, refreshActions, registerActionImpl, registerFormAction, removeFormElementListener, requestFocus, requestFocusInWindow, requestFocusInWindow, runAndDeclare, runAndDeclare, setConfRoot, setDebug, setFtx, setGUIBuilt, setMissingPropertiesPolicy, setShown, shouldShow, sync, waitForAsyncRefreshes, willCareForChildActions, willCareForChildRefresh
getPreferredScrollableViewportSize, getScrollableBlockIncrement, getScrollableTracksViewportHeight, getScrollableTracksViewportWidth, getScrollableUnitIncrement, getScrollingMode, grabFocus, init, init, init, paintComponent, setScrollingMode, setTexture
getAccessibleContext, getUI, getUIClassID, setUI, updateUI
addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, contains, createToolTip, firePropertyChange, firePropertyChange, firePropertyChange, getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBaselineResizeBehavior, getBorder, getBounds, getClientProperty, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getNextFocusableComponent, getPopupLocation, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getToolTipText, getTopLevelAncestor, getTransferHandler, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, hide, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingForPrint, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paint, paintImmediately, paintImmediately, print, printAll, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeNotify, removeVetoableChangeListener, repaint, repaint, requestDefaultFocus, requestFocus, resetKeyboardActions, reshape, revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setFocusTraversalKeys, setFont, setForeground, setInheritsPopupMenu, setInputMap, setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update
add, add, add, add, add, addContainerListener, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, remove, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusDownCycle, validate
action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, contains, createImage, createImage, createVolatileImage, createVolatileImage, dispatchEvent, enable, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, gotFocus, handleEvent, hasFocus, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, resize, resize, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, show, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
addFormElementListener, afterSave, afterSetValue, beforeSave, beforeSetValue, getActions, getActionsOfKind, getConfRoot, getCtx, getDebugName, getFtx, getName, getSchema, handleAttributes, handleElement, handleElements, handleNewElement, isClosed, isDebug, isEditable, isGUIBuilt, isInputPossible, isShown, mdiActivate, mdiClose, mdiDeactivate, mdiOpen, postInit, postRefresh, removeFormElementListener, requestFocus, sync, willCareForChildActions, willCareForChildRefresh
public FComboBox(FormContextI _ftx, electric.xml.Element _confroot)
public void close()
close
in interface FormElementI
close
in class FPanel
public void buildGUI()
public void handleRelationNameA(electric.xml.Attribute a)
public void handlePropertyA(electric.xml.Attribute a)
public void handleDisplayPropertyA(electric.xml.Attribute a)
public void handleDisplayFormatA(electric.xml.Attribute a)
public void handleFormatA(electric.xml.Attribute a)
public void handleWhereClauseA(electric.xml.Attribute a)
public void handleAutoSelectA(electric.xml.Attribute a)
public void handleSelectOutOfA(electric.xml.Attribute a)
public void handleNullableA(electric.xml.Attribute a)
public void handleSortByA(electric.xml.Attribute a)
public void handleChooseOnlyA(electric.xml.Attribute a)
public void handleShowIdA(electric.xml.Attribute a)
public void handleSuppressDuplicatesInNonRelationModeA(electric.xml.Attribute a)
public void handleNullChoiceTitleA(electric.xml.Attribute a)
public void handleSelectEntityA(electric.xml.Attribute a)
public void handleChoiceScriptE(electric.xml.Element el)
public java.util.HashMap getAttributeMap()
FInputPanel
getAttributeMap
in interface FormElementI
getAttributeMap
in class FInputPanel
public java.util.HashMap getElementMap()
FInputPanel
getElementMap
in interface FormElementI
getElementMap
in class FInputPanel
public boolean calculationMightBeExpensive()
calculationMightBeExpensive
in class FPanel
public void refresh()
refresh
in interface FormElementI
refresh
in class FPanel
public void refresh(int from)
refresh
in interface FormElementI
refresh
in class FPanel
public java.lang.Object calculateDisplayValue(AsyncRefreshRequestI r)
calculateDisplayValue
in interface AsyncRefreshExecutorI
public void renderDisplayValue(AsyncRefreshRequestI r, java.lang.Object value)
renderDisplayValue
in interface AsyncRefreshExecutorI
public void lockDisplayValue()
lockDisplayValue
in interface AsyncRefreshExecutorI
public void restoreLockstateOfDisplayValue()
restoreLockstateOfDisplayValue
in interface AsyncRefreshExecutorI
public java.lang.String getDisplayProperty()
getDisplayProperty
in interface FormElementWithDisplayPropertyI
public java.awt.Dimension getPreferredSize()
getPreferredSize
in class FPanel
public boolean setEditable(boolean b)
setEditable
in interface FormElementI
setEditable
in class FPanel
public void setEnabled()
public void setEnabled(boolean b)
setEnabled
in class javax.swing.JComponent
public void disable()
disable
in class javax.swing.JComponent
public void enable()
enable
in class javax.swing.JComponent
public javax.swing.JComponent getInitialFocus()
getInitialFocus
in interface InitialFocusCandidateI
public javax.swing.JComponent getJComponent()
FInputPanel
getJComponent
in class FInputPanel
public void setSelectedItem(java.lang.Object _obj)
public java.lang.String getProperty()
public void setProperty(java.lang.String $2)
public java.lang.String getFormat()
public void setFormat(java.lang.String $3)
public java.lang.String getWhereClause()
public void setWhereClause(java.lang.String $4)
public java.lang.String getAutoSelect()
public void setAutoSelect(java.lang.String $5)
public java.lang.String getSelectOutOf()
public void setSelectOutOf(java.lang.String $6)
public java.lang.String getSortBy()
public void setSortBy(java.lang.String $7)
public java.lang.String getNullChoiceTitle()
public void setNullChoiceTitle(java.lang.String $8)
public java.lang.String getSelectEntity()
public void setSelectEntity(java.lang.String $9)
public electric.xml.Element getChoiceScriptEl()
public void setChoiceScriptEl(electric.xml.Element $10)
public boolean isChooseOnly()
public void setChooseOnly(boolean $11)
public boolean isShowId()
public void setShowId(boolean $12)
public boolean isSuppressDuplicatesInNonRelationMode()
public void setSuppressDuplicatesInNonRelationMode(boolean $13)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.