Class EditTree
- All Implemented Interfaces:
- HasAttachHandlers,- HasHandlers,- EventListener,- HasVisibility,- IsWidget,- LogicalStructure,- DataBoundComponent,- HasClearHandlers,- HasClickHandlers,- HasDoubleClickHandlers,- HasDragCompleteHandlers,- HasDragMoveHandlers,- HasDragRepositionMoveHandlers,- HasDragRepositionStartHandlers,- HasDragRepositionStopHandlers,- HasDragResizeMoveHandlers,- HasDragResizeStartHandlers,- HasDragResizeStopHandlers,- HasDragStartHandlers,- HasDragStopHandlers,- HasDropCompleteHandlers,- HasDropHandlers,- HasDropMoveHandlers,- HasDropOutHandlers,- HasDropOverHandlers,- HasFetchDataHandlers,- HasFocusChangedHandlers,- HasFormulaUpdatedHandlers,- HasHoverHandlers,- HasHoverHiddenHandlers,- HasKeyDownHandlers,- HasKeyPressHandlers,- HasMouseDownHandlers,- HasMouseMoveHandlers,- HasMouseOutHandlers,- HasMouseOverHandlers,- HasMouseStillDownHandlers,- HasMouseUpHandlers,- HasMouseWheelHandlers,- HasMovedHandlers,- HasParentMovedHandlers,- HasResizedHandlers,- HasRightMouseDownHandlers,- HasRuleContextChangedHandlers,- HasScrolledHandlers,- HasShowContextMenuHandlers,- HasVisibilityChangedHandlers,- HasBodyKeyPressHandlers,- HasCellClickHandlers,- HasCellContextClickHandlers,- HasCellDoubleClickHandlers,- HasCellErrorIconHoverHandlers,- HasCellErrorIconOutHandlers,- HasCellErrorIconOverHandlers,- HasCellHoverHandlers,- HasCellMouseDownHandlers,- HasCellMouseUpHandlers,- HasCellOutHandlers,- HasCellOverHandlers,- HasCellSavedHandlers,- HasCellSelectionChangedHandlers,- HasCellValueHoverHandlers,- HasCriteriaChangedHandlers,- HasDataArrivedHandlers,- HasDataChangedHandlers,- HasDrawAreaChangedHandlers,- HasEditCompleteHandlers,- HasEditFailedHandlers,- HasEditorEnterHandlers,- HasEditorExitHandlers,- HasFieldStateChangedHandlers,- HasFilterEditorSubmitHandlers,- HasGroupByCompleteHandlers,- HasGroupByHandlers,- HasGroupStateChangedHandlers,- HasGroupTreeChangedHandlers,- HasHeaderClickHandlers,- HasHeaderDoubleClickHandlers,- HasHeaderHoverHandlers,- HasHilitesChangedHandlers,- HasRecordClickHandlers,- HasRecordCollapseHandlers,- HasRecordDoubleClickHandlers,- HasRecordDropHandlers,- HasRecordExpandHandlers,- HasRegroupHandlers,- HasRemoveRecordClickHandlers,- HasRowContextClickHandlers,- HasRowEditorEnterHandlers,- HasRowEditorExitHandlers,- HasRowHoverHandlers,- HasRowMouseDownHandlers,- HasRowMouseUpHandlers,- HasRowOutHandlers,- HasRowOverHandlers,- HasSelectionChangedHandlers,- HasSelectionUpdatedHandlers,- HasSetSortHandlers,- HasSortChangedHandlers,- HasSorterClickHandlers,- HasSorterContextClickHandlers,- HasViewStateChangedHandlers,- HasMembersChangedHandlers,- HasDataArrivedHandlers,- HasDataChangedHandlers,- HasFolderClickHandlers,- HasFolderClosedHandlers,- HasFolderContextClickHandlers,- HasFolderDropHandlers,- HasFolderOpenedHandlers,- HasLeafClickHandlers,- HasLeafContextClickHandlers,- HasNodeClickHandlers,- HasNodeContextClickHandlers
 Nodes
 can be added via drag and drop from a Palette or may be programmatically  added via
 addNode().  Nodes may be dragged within the tree to reparent 
 them. 
Eligibility to be dropped on any given node is determined by inspecting the DataSource of the parent node. Drop is allowed only if the parent schema has a field which accepts the type of the dropped node.
 On successful
 drop, the newly created component will be added to the parent node under the detected field.  Array fields, declared by
 setting dataSourceField.multiple:true, are supported.   
 An EditTree is initialized by setting rootComponent or editContext.  EditTree.data (the Tree instance) should never be
 directly set or looked at. 
 EditTree automatically creates an EditContext and
 provides several APIs and settings that are passthroughs to the underlying EditContext for convenience.
- See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from class com.google.gwt.user.client.ui.UIObjectUIObject.DebugIdImpl, UIObject.DebugIdImplEnabled
- 
Field SummaryFields inherited from class com.smartgwt.client.widgets.BaseWidgetconfig, configOnly, factoryCreated, factoryProperties, id, nativeObject, scClassNameFields inherited from class com.google.gwt.user.client.ui.UIObjectDEBUG_ID_PREFIX
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionaddFromPaletteNode(PaletteNode paletteNode) Creates a new EditNode from a PaletteNode, using thedefaultPalette.addFromPaletteNode(PaletteNode paletteNode, EditNode parentNode) Creates a new EditNode from a PaletteNode, using thedefaultPalette.EditNode[]addFromPaletteNodes(PaletteNode[] paletteNodes) Add the suppliedPaletteNodesto the parentNode, preserving internal references from one supplied PaletteNode to another.EditNode[]addFromPaletteNodes(PaletteNode[] paletteNodes, EditNode parentNode) Add the suppliedPaletteNodesto the parentNode, preserving internal references from one supplied PaletteNode to another.Add a newEditNodeto the EditContext, under the specified parent.addNode(EditNode newNode, EditNode parentNode, Integer index, String parentProperty, Boolean skipParentComponentAdd) addNode(EditNode newNode, EditNode parentNode, Integer index, String parentProperty, Boolean skipParentComponentAdd, Boolean forceSingularFieldReplace) Add a newEditNodeto the EditContext, under the specified parent.voidaddPaletteNodesFromJS(String jsCode) AddPaletteNodesfrom a JavaScript source representation.voidaddPaletteNodesFromJS(String jsCode, EditNode parentNode) voidaddPaletteNodesFromJS(String jsCode, EditNode parentNode, String[] globals) AddPaletteNodesfrom a JavaScript source representation.voidaddPaletteNodesFromJSON(String jsonString) RecreateEditNodesfrom a JSON representation ofPaletteNodes(possibly created by callingserializeAllEditNodesAsJSON()orserializeEditNodesAsJSON().voidaddPaletteNodesFromJSON(String jsonString, EditNode parentNode) voidaddPaletteNodesFromJSON(String jsonString, EditNode parentNode, String[] globals) voidaddPaletteNodesFromJSON(String jsonString, EditNode parentNode, String[] globals, Function callback) RecreateEditNodesfrom a JSON representation ofPaletteNodes(possibly created by callingserializeAllEditNodesAsJSON()orserializeEditNodesAsJSON().voidaddPaletteNodesFromXML(String xmlString) RecreateEditNodesfrom an XML representation ofPaletteNodes(possibly created by callingserializeAllEditNodes()orserializeEditNodes().voidaddPaletteNodesFromXML(String xmlString, EditNode parentNode) voidaddPaletteNodesFromXML(String xmlString, EditNode parentNode, String[] globals) voidaddPaletteNodesFromXML(String xmlString, EditNode parentNode, String[] globals, Function callback) RecreateEditNodesfrom an XML representation ofPaletteNodes(possibly created by callingserializeAllEditNodes()orserializeEditNodes().static voidchangeAutoChildDefaults(String autoChildName, Canvas defaults) Changes the defaults for Canvas AutoChildren namedautoChildName.static voidchangeAutoChildDefaults(String autoChildName, FormItem defaults) Changes the defaults for FormItem AutoChildren namedautoChildName.voidcopyEditNodes(EditNode editNode) Copies the passed editNode or editNodes to an internal "clipboard" space, for later application viapasteEditNodes().voidcopyEditNodes(EditNode... editNode) Copies the passed editNode or editNodes to an internal "clipboard" space, for later application viapasteEditNodes().protected JavaScriptObjectcreate()voidvoidenableEditing(EditNode editNode) Enable edit mode for anEditNode.Controls whether components can be dropped into other components which support child components.New nodes added to the editContext are automatically placed into edit mode if the new node's parent is in edit mode.Should the group selection box shown whencanGroupSelectis true allow dragging the group as a whole?Should a group selection outline covering the outermost bounding boxes of all selected components be shown in this container?booleanOption to save searches is disabled for editTreebooleanOption to show filter editor is disabled for editTreePaletteto use when anEditNodeis being created directly by this EditContext, instead of being created due to a user interaction with a palette (eg dragging from aTreePalette, or clicking onMenuPalette).TheEditContextmanaged by this EditTree.Gets the tree of editNodes being edited by this editContext.Palette[]AdditionalPalettesto consult for metadata when deserializingEdit Nodes.Should the group selection box shown whencanGroupSelectis true be hidden during drag?Getter implementing theLogicalStructureinterface, which supports Eclipse's logical structure debugging facility.voidgetNodeProperty(EditNode editNode, String name) Returns the specified property from the editNode's serializable "defaults".static EditTreegetOrCreateRef(JavaScriptObject jsObj) voidgetPaletteNodesFromJS(String jsCode, PaletteNodeCallback callback) ObtainPaletteNodesfrom a JavaScript source representation.voidgetPaletteNodesFromJS(String jsCode, PaletteNodeCallback callback, String[] globals) ObtainPaletteNodesfrom a JavaScript source representation.voidgetPaletteNodesFromXML(String xmlString, PaletteNodeCallback callback) ObtainPaletteNodesfrom an XML representation, but do not add them to the EditContext.When enabled, changes to aliveObject's position and size will be persisted to theirEditNodesby default.Root of data to edit.Returns the rootEditNodeof the EditContext typically created fromrootComponent.Set the CSS border to be applied to the selection outline of the selected components.The background color for the selection outline label.Should the selection outline show a label for selected components? A component may also be highlighted with the selection outline and label to indicate the target of a drop.booleanisNodeEditingOn(EditNode editNode) Returns true ifeditNodeis in edit mode.makeEditNode(PaletteNode paletteNode) Creates and returns an EditNode using thedefaultPalette.makePaletteNode(EditNode editNode) makePaletteNodeTree(EditNode editNode, Boolean removeAutoIDs) Creates aTreeofPaletteNodesfrom anEditNodein this context'seditNodeTree, by usingmakePaletteNode()on the passedEditNodeand its descendents within theeditNodeTree.void"Pastes"editNodespreviously captured viacopyEditNodes().voidpasteEditNodes(EditNode targetEditNode) "Pastes"editNodespreviously captured viacopyEditNodes().voidRemoves allEditNodesfrom the EditContext, but does not destroy theliveObjects.voidremoveNode(EditNode editNode) RemovesEditNodefrom the EditContext.voidremoveNodeProperties(EditNode editNode, String[] properties) Removes the specified properties from an editNode's serializable "defaults".voidreorderNode(EditNode parentNode, Integer index, Integer moveToIndex) Moves anEditNodefrom one child index to another in the EditContext under the specified parent.Serialize the tree ofEditNodesto an XML representation ofPaletteNodes.serializeAllEditNodes(SerializationSettings settings) Serialize the tree ofEditNodesto an XML representation ofPaletteNodes.Encode the tree ofEditNodesto a JSON representation ofPaletteNodes.Encode the tree ofEditNodesto a JSON representation ofPaletteNodes.serializeEditNodes(EditNode[] nodes) Serialize the providedEditNodesto an XML representation ofPaletteNodes.serializeEditNodes(EditNode[] nodes, SerializationSettings settings) Serialize the providedEditNodesto an XML representation ofPaletteNodes.serializeEditNodesAsJSON(EditNode[] nodes) Serialize the providedEditNodesto a JSON representation ofPaletteNodes.serializeEditNodesAsJSON(EditNode[] nodes, SerializationSettings settings) Serialize the providedEditNodesto a JSON representation ofPaletteNodes.setAllowNestedDrops(Boolean allowNestedDrops) Controls whether components can be dropped into other components which support child components.setAutoEditNewNodes(Boolean autoEditNewNodes) New nodes added to the editContext are automatically placed into edit mode if the new node's parent is in edit mode.setCanDragGroup(Boolean canDragGroup) Should the group selection box shown whencanGroupSelectis true allow dragging the group as a whole?setCanGroupSelect(Boolean canGroupSelect) Should a group selection outline covering the outermost bounding boxes of all selected components be shown in this container?setCanSaveSearches(boolean canSaveSearches) Option to save searches is disabled for editTreesetCanShowFilterEditor(boolean canShowFilterEditor) Option to show filter editor is disabled for editTreesetDefaultPalette(Palette defaultPalette) Paletteto use when anEditNodeis being created directly by this EditContext, instead of being created due to a user interaction with a palette (eg dragging from aTreePalette, or clicking onMenuPalette).static voidsetDefaultProperties(EditTree editTreeProperties) Class level method to set the default properties of this class.setEditContext(EditContext editContext) TheEditContextmanaged by this EditTree.setExtraPalettes(Palette... extraPalettes) AdditionalPalettesto consult for metadata when deserializingEdit Nodes.setHideGroupBorderOnDrag(Boolean hideGroupBorderOnDrag) Should the group selection box shown whencanGroupSelectis true be hidden during drag?Setter implementing theLogicalStructureinterface, which supports Eclipse's logical structure debugging facility.voidsetNodeProperties(EditNode editNode, Canvas properties) Update an editNode's serializable "defaults" with the supplied properties.voidsetNodeProperties(EditNode editNode, Canvas properties, Boolean skipLiveObjectUpdate) Update an editNode's serializable "defaults" with the supplied properties.setPersistCoordinates(Boolean persistCoordinates) When enabled, changes to aliveObject's position and size will be persisted to theirEditNodesby default.setRootComponent(Record rootComponent) Root of data to edit.setSelectedBorder(String selectedBorder) Set the CSS border to be applied to the selection outline of the selected components.setSelectedLabelBackgroundColor(String selectedLabelBackgroundColor) The background color for the selection outline label.setShowSelectedLabel(Boolean showSelectedLabel) Should the selection outline show a label for selected components? A component may also be highlighted with the selection outline and label to indicate the target of a drop.setUseCopyPasteShortcuts(Boolean useCopyPasteShortcuts) Methods inherited from class com.smartgwt.client.widgets.tree.TreeGridaddDataArrivedHandler, addDataChangedHandler, addFolderClickHandler, addFolderClosedHandler, addFolderContextClickHandler, addFolderDropHandler, addFolderOpenedHandler, addLeafClickHandler, addLeafContextClickHandler, addNodeClickHandler, addNodeContextClickHandler, addRecordDropHandler, canEditCell, closeFolder, exportClientData, exportClientData, exportClientData, fetchData, fetchData, fetchData, fetchData, filterData, filterData, filterData, getAlwaysShowOpener, getAnimateFolderEffect, getAnimateFolderMaxRows, getAnimateFolders, getAnimateFolderSpeed, getAnimateFolderTime, getAutoAssignTreeField, getAutoFetchTextMatchStyle, getAutoOpenTree, getAutoPreserveOpenState, getCanAcceptDroppedRecords, getCanDragRecordsOut, getCanDropOnLeaves, getCanDropSiblingAfterLastNode, getCanReorderRecords, getCanReparentNodes, getCanSelectAll, getCantDragIntoChildMessage, getCantDragIntoSelfMessage, getCantDragMultipleNodeOccurencesMessage, getCascadeSelection, getCellAlign, getChildCannotBeItsOwnAncestorMessage, getClosedIconSuffix, getConnectorImage, getConnectorImageAsSCStatefulImgConfig, getCreateDefaultTreeField, getCustomIconDropProperty, getCustomIconOpenProperty, getCustomIconProperty, getCustomIconSelectedProperty, getData, getDataArity, getDataFetchMode, getDataProperties, getDisplayNodeType, getDraggedNodeLocators, getDropEndSpace, getDropFolder, getDropIconSuffix, getEventRow, getEventRow, getExtraIcon, getExtraIconGap, getFolderIcon, getFolderIconPadding, getGroupByField, getGroupByFieldAsStringArray, getIcon, getIconBaseStyle, getIconPadding, getIconPaddingProperty, getIconSize, getIndentRecordComponents, getIndentSize, getKeepParentsOnFilter, getLeaveSelectionCheckboxGap, getLoadDataOnDemand, getLoadingIcon, getManyItemsImage, getNodeIcon, getNodeTitle, getOfflineNodeMessage, getOpenerIconHeight, getOpenerIconSize, getOpenerIconWidth, getOpenerImage, getOpenerImageAsSCStatefulImgConfig, getOpenIcon, getOpenIconPadding, getOpenIconSuffix, getOpenState, getParentAlreadyContainsChildMessage, getRecord, getRecordDropAppearance, getRecords, getSaveOpenStateInViewState, getSelectedIconSuffix, getSelectedPaths, getSelectedRecord, getSelectionProperty, getSeparateFolders, getServerFilterFields, getShowConnectors, getShowCustomIconDrop, getShowCustomIconOpen, getShowCustomIconSelected, getShowDisabledSelectionCheckbox, getShowDropEndSpace, getShowDropIcons, getShowFolderIcons, getShowFullConnectors, getShowLoadingIcons, getShowNodeIcons, getShowOpener, getShowOpenIcons, getShowPartialSelection, getShowRoot, getShowSelectedIcons, getShowSelectedOpener, getSortFoldersBeforeLeaves, getTree, getTreeFieldMinWidth, getTreeFieldTitle, getTreeRootValue, getUseAllDataSourceFields, groupBy, isExportingClientData, isOverExtraIcon, isOverOpenArea, loadAllRecords, loadAllRecords, loadAllRecords, onInit, openFolder, openFolder, recordDoubleClick, setAlwaysShowOpener, setAnimateFolderEffect, setAnimateFolderMaxRows, setAnimateFolders, setAnimateFolderSpeed, setAnimateFolderTime, setAutoAssignTreeField, setAutoFetchTextMatchStyle, setAutoOpenTree, setAutoPreserveOpenState, setCanAcceptDroppedRecords, setCanDragRecordsOut, setCanDropOnLeaves, setCanDropSiblingAfterLastNode, setCanReorderRecords, setCanReparentNodes, setCanSelectAll, setCantDragIntoChildMessage, setCantDragIntoSelfMessage, setCantDragMultipleNodeOccurencesMessage, setCascadeSelection, setCellValueHoverFormatter, setChildCannotBeItsOwnAncestorMessage, setClosedIconSuffix, setConnectorImage, setConnectorImage, setCreateDefaultTreeField, setCustomIconDropProperty, setCustomIconOpenProperty, setCustomIconProperty, setCustomIconSelectedProperty, setCustomNodeIcon, setData, setDataArity, setDataFetchMode, setDataProperties, setDefaultProperties, setDisplayNodeType, setDropEndSpace, setDropIconSuffix, setExtraIconGap, setFields, setFolderIcon, setFolderIconPadding, setGroupByField, setGroupByField, setIconBaseStyle, setIconPadding, setIconPaddingProperty, setIconSize, setIndentRecordComponents, setIndentSize, setInitialData, setKeepParentsOnFilter, setLeaveSelectionCheckboxGap, setLoadDataOnDemand, setLoadingIcon, setLogicalStructure, setManyItemsImage, setNodeIcon, setOfflineNodeMessage, setOpenerIconHeight, setOpenerIconSize, setOpenerIconWidth, setOpenerImage, setOpenerImage, setOpenIconPadding, setOpenIconSuffix, setOpenState, setParentAlreadyContainsChildMessage, setRecordDropAppearance, setSaveOpenStateInViewState, setSelectedIconSuffix, setSelectedPaths, setSelectionProperty, setSeparateFolders, setServerFilterFields, setShowConnectors, setShowCustomIconDrop, setShowCustomIconOpen, setShowCustomIconSelected, setShowDisabledSelectionCheckbox, setShowDropEndSpace, setShowDropIcons, setShowFolderIcons, setShowFullConnectors, setShowLoadingIcons, setShowNodeIcons, setShowOpener, setShowOpenIcons, setShowPartialSelection, setShowRoot, setShowSelectedIcons, setShowSelectedOpener, setSortFoldersBeforeLeaves, setTreeFieldMinWidth, setTreeFieldTitle, setTreeRootValue, setTreeRootValue, setUseAllDataSourceFields, startEditingNew, toggleFolder, toggleFolder, toggleFolder, toggleFolder, transferNodes, willAcceptDropMethods inherited from class com.smartgwt.client.widgets.grid.ListGridaddBodyKeyPressHandler, addCellClickHandler, addCellContextClickHandler, addCellDoubleClickHandler, addCellErrorIconHoverHandler, addCellErrorIconOutHandler, addCellErrorIconOverHandler, addCellHoverHandler, addCellMouseDownHandler, addCellMouseUpHandler, addCellOutHandler, addCellOverHandler, addCellSavedHandler, addCellSelectionChangedHandler, addCellValueHoverHandler, addCriteriaChangedHandler, addData, addData, addData, addDataArrivedHandler, addDataChangedHandler, addDragCompleteHandler, addDrawAreaChangedHandler, addDropCompleteHandler, addEditCompleteHandler, addEditFailedHandler, addEditorEnterHandler, addEditorExitHandler, addEmbeddedComponent, addEmbeddedComponent, addEmbeddedComponent, addEmbeddedComponent, addFetchDataHandler, addFieldStateChangedHandler, addFilterEditorSubmitHandler, addFormulaField, addFormulaUpdatedHandler, addGroupByCompleteHandler, addGroupByHandler, addGroupStateChangedHandler, addGroupTreeChangedHandler, addHeaderClickHandler, addHeaderDoubleClickHandler, addHeaderHoverHandler, addHilitesChangedHandler, addRecordClickHandler, addRecordCollapseHandler, addRecordDoubleClickHandler, addRecordExpandHandler, addRegroupHandler, addRemoveRecordClickHandler, addRowContextClickHandler, addRowEditorEnterHandler, addRowEditorExitHandler, addRowHoverHandler, addRowMouseDownHandler, addRowMouseUpHandler, addRowOutHandler, addRowOverHandler, addSelectionChangedHandler, addSelectionUpdatedHandler, addSetSortHandler, addSort, addSortChangedHandler, addSorterClickHandler, addSorterContextClickHandler, addSummaryField, addViewStateChangedHandler, anySelected, applyCellData, applyRecordData, applySortToData, askForSort, autoFitField, autoFitFields, autoFitFields, cancelEditing, canEditCell, canExpandRecord, canSelectCell, canSelectRecord, cellHasChanges, cellHasErrors, cellHasErrors, cellValueHoverHTML, cellValueIsClipped, chartData, chartData, chartData, chartData, chartData, clearAllCriteria, clearCriteria, clearCriteria, clearCriteria, clearEditValue, clearFieldError, clearFieldError, clearFieldSearchOperator, clearFilterWindowCriteria, clearRowErrors, clearSavedViewState, clearSort, closeGroup, closeRecord, collapseRecord, collapseRecords, configureGrouping, createRecordComponent, dataChangedComplete, dataChangedComplete, deselectAllRecords, deselectRange, deselectRecord, deselectRecord, deselectRecords, deselectRecords, disableHilite, disableHiliting, discardAllEdits, discardAllEdits, discardAllEdits, discardEdits, discardEdits, displayHeaderContextMenu, displaySort, drop, editExistingRecord, editExistingRecord, editFields, editHilites, enableHilite, enableHilite, enableHiliting, enableHiliting, endEditing, expandRecord, expandRecords, exportData, exportData, exportData, fetchRelatedData, fetchRelatedData, fetchRelatedData, fetchRelatedData, fetchRelatedData, fetchRowCount, fetchRowCount, fetchRowCount, fieldIsEditable, fieldIsEditable, fieldIsEditable, fieldIsVisible, filterByEditor, filterData, filterViaAI, filterViaAI, find, findAll, findIndex, findNextEditCell, findNextIndex, findNextIndex, focusInCell, focusInFilterEditor, focusInFilterEditor, focusInRow, freezeField, freezeField, freezeField, freezeField, freezeFields, freezeFields, getAddDropValues, getAddFormulaFieldText, getAddOperation, getAddSummaryFieldText, getAdvancedFieldPickerThreshold, getAdvancedFilteringText, getAiFilterWindow, getAiFilterWindowHint, getAiFilterWindowInstructions, getAiFilterWindowTitle, getAiHiliteWindow, getAiHoverContentsPrefix, getAiHoverRetryDelay, getAiSortFieldMaxRecordsMessage, getAiSortProgressDialog, getAllEditRows, getAllFields, getAllowFilterExpressions, getAllowFilterOperators, getAllowFilterWindow, getAllowRowSpanning, getAlternateBodyStyleName, getAlternateFieldFrequency, getAlternateFieldStyles, getAlternateFieldSuffix, getAlternateRecordFrequency, getAlternateRecordStyles, getAlternateRecordSuffix, getAlwaysShowEditors, getAlwaysShowOperatorIcon, getAnimateRemoveRecord, getAnimateRemoveSpeed, getAnimateRemoveTime, getAnimateRollOver, getAnimateRollUnder, getAnimateSelection, getAnimateSelectionUnder, getApplyFormulaAfterSummary, getApplyRowCountToLength, getApplyRowNumberStyle, getApproximateRowCountFormat, getAriaRole, getAriaState, getAriaStateDefaults, getArrowKeyAction, getArrowKeyEditAction, getAsyncErrorCellValue, getAsynchGroupingPrompt, getAsyncMissingCellValue, getAutoComplete, getAutoConfirmSaveEdits, getAutoFetchAsFilter, getAutoFetchData, getAutoFetchDisplayMap, getAutoFetchRowCount, getAutoFitAllText, getAutoFitClipFields, getAutoFitData, getAutoFitDateFields, getAutoFitExpandField, getAutoFitExtraRecords, getAutoFitFieldsFillViewport, getAutoFitFieldText, getAutoFitFieldWidths, getAutoFitHeaderHeights, getAutoFitIconFields, getAutoFitMaxColumns, getAutoFitMaxHeight, getAutoFitMaxRecords, getAutoFitMaxWidth, getAutoFitMaxWidthAsString, getAutoFitTimeFields, getAutoFitWidthApproach, getAutoPersistViewState, getAutoSaveEdits, getAutoSizeHeaderSpans, getBackgroundComponent, getBadFormulaResultValue, getBaseStyle, getBaseStyle, getBlockingRowCountFetch, getBody, getBodyBackgroundColor, getBodyOverflow, getBodyScrollLeft, getBodyScrollTop, getBodyStyleName, getBooleanBaseStyle, getBooleanFalseImage, getBooleanImageHeight, getBooleanImageWidth, getBooleanPartialImage, getBooleanTrueImage, getBriefRowRangeDisplayValue, getCanAddAISortFields, getCanAddAISummaryFields, getCanAddFormulaFields, getCanAddSummaryFields, getCanAutoFitFields, getCancelEditingConfirmationMessage, getCanCollapseGroup, getCanConfigureViaAI, getCanDragSelect, getCanDragSelectText, getCanDropInEmptyArea, getCanEdit, getCanEditHilites, getCanEditTitles, getCanExpandMultipleRecords, getCanExpandRecordProperty, getCanExpandRecords, getCanFocusInEmptyGrid, getCanFreezeFields, getCanGroupBy, getCanHiliteViaAI, getCanHover, getCanMultiGroup, getCanMultiSort, getCanPickFields, getCanPickOmittedFields, getCanRemoveRecords, getCanReorderFields, getCanRequestRowCount, getCanResizeFields, getCanSelectCells, getCanSelectGroups, getCanSelectSummaryRows, getCanSort, getCanTabToHeader, getCanTabToSorter, getCellAriaState, getCellContextMenu, getCellContextMenuItems, getCellCSSText, getCellErrors, getCellHeight, getCellHoverComponent, getCellPadding, getCellPageRect, getCellRole, getCellRowSpan, getCellSelection, getCellStartRow, getCellStyle, getChartConstructor, getChartType, getCheckboxFieldFalseImage, getCheckboxFieldImageHeight, getCheckboxFieldImageWidth, getCheckboxFieldPartialImage, getCheckboxFieldTrueImage, getChildExpansionMode, getClearAllSortingText, getClearCriteriaOnFilterEditorHide, getClearFilterText, getClearFilterViaAIText, getClearSortFieldText, getClipHeaderTitles, getCollapseGroupOnRowClick, getColumnLeft, getColumnPageLeft, getColumnWidth, getConfigureGroupingText, getConfigureSortText, getConfigureViaAIText, getConfirmCancelEditing, getConfirmDiscardEdits, getConfirmDiscardEditsMessage, getCriteria, getCriteriaIndicatorColor, getCriteriaIndicatorHeaderColor, getCurrentExpansionComponent, getCurrentExpansionComponent, getCurrentFieldWidths, getDataAsJSList, getDataAsRecordList, getDataFetchDelay, getDataPageSize, getDataSource, getDateFormatter, getDatetimeFormatter, getDeepCloneOnEdit, getDefaultDateFieldWidth, getDefaultDateTimeFieldWidth, getDefaultEditableDateFieldWidth, getDefaultEditableDateTimeFieldWidth, getDefaultFields, getDefaultFilterOperator, getDefaultFilterOperatorSuffix, getDefaultFormattedFieldValue, getDefaultFormattedFieldValue, getDefaultFormattedFieldValue, getDefaultFormattedValue, getDefaultTimeFieldWidth, getDeferRemoval, getDeselectOnPartialCheckboxClick, getDetailDS, getDetailField, getDisabledGroupByPrompt, getDiscardDataOnSetFetchOperation, getDiscardEditsOnHideField, getDiscardEditsSaveButtonTitle, getDisplayValue, getDisplayValue, getDisplayValue, getDisplayValue, getDisplayValue, getDragData, getDragDataAction, getDragHandleField, getDragHandleFieldTitle, getDragHandleIcon, getDragHandleIconSize, getDragScrollRedrawDelay, getDragTrackerMode, getDragTrackerStyle, getDrawAheadRatio, getDrawAllMaxCells, getDrawArea, getDrawnRowHeight, getDrawnRows, getDropValues, getDuplicateDragMessage, getEditByCell, getEditCol, getEditedCell, getEditedCell, getEditedCell, getEditedCell, getEditedRecord, getEditEvent, getEditFailedBaseStyle, getEditFailedCSSText, getEditFormItem, getEditFormItem, getEditFormulaFieldText, getEditOnF2Keypress, getEditOnFocus, getEditPendingBaseStyle, getEditPendingCSSText, getEditPendingMarkerStyle, getEditProxyConstructor, getEditRow, getEditSelectionType, getEditSummaryFieldText, getEditValue, getEditValue, getEditValueAsBoolean, getEditValueAsDate, getEditValueAsFloat, getEditValueAsInt, getEditValueAsRecord, getEditValueAsRecordArray, getEditValueAsString, getEditValues, getEditValues, getEmbeddedComponentIndent, getEmbeddedComponentMargin, getEmptyAIHoverContents, getEmptyCellValue, getEmptyMessage, getEmptyMessageStyle, getEmptyRowRangeDisplayValue, getEnforceVClipping, getEnterKeyEditAction, getEnumCriteriaAsInitialValues, getErrorIconHeight, getErrorIconSrc, getErrorIconWidth, getEscapeKeyEditAction, getEventColumn, getEventColumn, getExactRowCountFormat, getExpandedRecords, getExpansionCanEdit, getExpansionComponent, getExpansionComponentPoolingMode, getExpansionDetailField, getExpansionDetailRelated, getExpansionDetails, getExpansionEditor, getExpansionEditorCollapseOnSave, getExpansionEditorSaveButton, getExpansionEditorSaveButtonTitle, getExpansionEditorSaveDialogPrompt, getExpansionEditorShowSaveDialog, getExpansionField, getExpansionFieldFalseImage, getExpansionFieldImageHeight, getExpansionFieldImageShowRTL, getExpansionFieldImageShowSelected, getExpansionFieldImageStyle, getExpansionFieldImageWidth, getExpansionFieldTrueImage, getExpansionIndent, getExpansionLayout, getExpansionMode, getExpansionRelated, getExpansionScreen, getExplicitFetchDelay, getExportAll, getExportAlternateRowBGColor, getExportBGColor, getExportColumnBGColor, getExportDefaultBGColor, getExportFieldAlignments, getExportFields, getExportFieldWidths, getExportHeaderHeights, getExportHiddenFieldWidth, getExportIncludeSummaries, getExportRawNumbers, getExportRawValues, getExportRowBGColor, getExportTextColor, getExportWidthScale, getExportWrapHeaderTitles, getFetchDelay, getFetchFields, getFetchFieldsAsString, getFetchOperation, getFetchRequestProperties, getField, getField, getFieldAlignments, getFieldByName, getFieldContentWidth, getFieldCount, getFieldCriteriaText, getFieldName, getFieldNum, getFieldNum, getFieldPickerFieldProperties, getFieldPickerShowSampleValues, getFieldPickerWindow, getFields, getFieldsAsJavaScriptObjects, getFieldSearchOperator, getFieldState, getFieldTitle, getFieldTitle, getFieldVisibilitySubmenuTitle, getFieldWidth, getFieldWidth, getFilterButtonPrompt, getFilterButtonProperties, getFilterByCell, getFilterEditor, getFilterEditorCriteria, getFilterEditorCriteria, getFilterEditorCriteriaAsAdvancedCriteria, getFilterEditorCriterion, getFilterEditorHeight, getFilterEditorProperties, getFilterLocalData, getFilterOnKeypress, getFilterUsingText, getFilterViaAIMode, getFilterViaAIPanelInstructions, getFilterViaAIText, getFilterWindow, getFilterWindowCriteria, getFilterWindowCriteriaIndicator, getFilterWindowFilter, getFilterWindowInstructions, getFilterWindowTitle, getFirstCellStyle, getFixedFieldWidths, getFixedRecordHeights, getFocusRow, getFormattedRowCount, getFormattedRowRange, getFormulaBuilderSpanTitleSeparator, getFormulaFieldValue, getFreezeFieldText, getFrozenBaseStyle, getFrozenFieldsMaxWidth, getFrozenFieldsMaxWidthAsInt, getFrozenHeaderBaseStyle, getFrozenHeaderTitleStyle, getFrozenRollOverCanvas, getFrozenRollUnderCanvas, getFullRowRangeDisplayValue, getGenerateClickOnEnter, getGenerateClickOnSpace, getGenerateDoubleClickOnEnter, getGenerateDoubleClickOnSpace, getGridAdditionalCriteriaText, getGridComponents, getGridRenderer, getGridSummary, getGridSummaryData, getGridSummaryRecordProperty, getGroupByAsyncThreshold, getGroupByFields, getGroupByFieldSummaries, getGroupByMaxRecords, getGroupByMaxRecordsExceededMessage, getGroupByText, getGroupedRecordIndex, getGroupIcon, getGroupIconSize, getGroupIconStyle, getGroupIndentSize, getGroupLeadingIndent, getGroupMembers, getGroupNodeBaseStyle, getGroupNodeStyle, getGroupSortDirection, getGroupState, getGroupSummaryData, getGroupSummaryData, getGroupSummaryData, getGroupSummaryData, getGroupSummaryRecordProperty, getGroupSummaryStyle, getGroupTitleColumnProperties, getGroupTitleField, getGroupTree, getGroupTreeSelection, getGroupTreeSelection, getGroupTreeSelection, getHeader, getHeaderAriaRole, getHeaderAutoFitEvent, getHeaderBackgroundColor, getHeaderBarStyle, getHeaderBaseStyle, getHeaderButtonAriaRole, getHeaderButtonAriaState, getHeaderButtonProperties, getHeaderContextMenu, getHeaderContextMenuItems, getHeaderHeight, getHeaderHoverAlign, getHeaderHoverHeight, getHeaderHoverOpacity, getHeaderHoverStyle, getHeaderHoverVAlign, getHeaderHoverWidth, getHeaderHoverWrap, getHeaderMenuButton, getHeaderMenuButtonHeight, getHeaderMenuButtonHeightAsString, getHeaderMenuButtonIcon, getHeaderMenuButtonIconHeight, getHeaderMenuButtonIconWidth, getHeaderMenuButtonSnapOffsetLeft, getHeaderMenuButtonWidth, getHeaderRadius, getHeaderShadowColor, getHeaderShadowHOffset, getHeaderShadowSoftness, getHeaderShadowVOffset, getHeaderSpan, getHeaderSpanContextMenuItems, getHeaderSpanHeight, getHeaderTitleStyle, getHeaderTitleVAlign, getHideEmptySummaryRow, getHideFilterEditorTitle, getHiliteCanReplaceValue, getHiliteEditorSpanTitleSeparator, getHiliteHTMLAfterFormat, getHiliteIconHeight, getHiliteIconLeftPadding, getHiliteIconPosition, getHiliteIconRightPadding, getHiliteIcons, getHiliteIconSize, getHiliteIconWidth, getHiliteProperty, getHiliteReplaceValueFieldTitle, getHiliteRowOnFocus, getHilites, getHiliteState, getHiliteViaAIMode, getHiliteViaAIText, getHoverMode, getHoverScreen, getHoverStyle, getIconCursor, getImageSize, getImplicitCriteria, getIncludeHilitesInSummaryFields, getIncludeInSummaryProperty, getInitialCriteria, getInitialSort, getInstantScrollTrackRedraw, getInvalidSummaryValue, getIsGrouped, getIsSeparatorProperty, getLastCellStyle, getLeaveScrollbarGap, getLinkTextProperty, getListEndEditAction, getLoadingDataMessage, getLoadingDataMessageStyle, getLoadingMessage, getLoadingRowCountDisplayIcoHeight, getLoadingRowCountDisplayIcon, getLoadingRowCountDisplayIconWidth, getLocateColumnsBy, getLocateRowsBy, getLongTextEditorThreshold, getLongTextEditorType, getMaxExpandedRecords, getMaxExpandedRecordsPrompt, getMaximumRowCountFormat, getMaxSummaryRowRecords, getMinFieldWidth, getMinHeight, getMinimumCellHeight, getMinimumRowCountFormat, getMissingSummaryFieldValue, getModalEditing, getMultiGroupDialogDefaults, getMultiGroupDialogProperties, getNavigateOnTab, getNeverValidate, getNewRecordRowMessage, getNewSearchText, getNormalBaseStyle, getNormalCellHeight, getNoSavedSearchesText, getNullGroupTitle, getOfflineMessageStyle, getOperatorIcon, getOriginalRecordList, getOriginalResultSet, getOriginBaseStyle, getOverflow, getPendingAsyncCellValue, getPlaceholderAIHoverContents, getPoolComponentsPerColumn, getPreserveFocusStylingOnMouseOut, getPreserveWhitespace, getPreventDuplicates, getPrintAutoFit, getPrintBaseStyle, getPrintBooleanBaseStyle, getPrintBooleanFalseImage, getPrintBooleanPartialImage, getPrintBooleanTrueImage, getPrintCheckboxFieldFalseImage, getPrintCheckboxFieldPartialImage, getPrintCheckboxFieldTrueImage, getPrintHeaderStyle, getPrintMaxRows, getPrintWrapCells, getProgressiveLoading, getQuickDrawAheadRatio, getRangeRowCountFormat, getRecordBaseStyleProperty, getRecordCanRemoveProperty, getRecordCanSelectProperty, getRecordCellRoleProperty, getRecordComponent, getRecordComponent, getRecordComponentHeight, getRecordComponentPoolingMode, getRecordComponentPosition, getRecordDetailDSProperty, getRecordDropPosition, getRecordEditProperty, getRecordEnabledProperty, getRecordIndex, getRecordIndex, getRecordList, getRecordRadius, getRecordRadiusTargets, getRecordRowAriaStateProperty, getRecordRowRoleProperty, getRecordScreen, getRecordShowRollOverProperty, getRecordSummaryAttributePrefix, getRecordSummaryBaseStyle, getRelatedDataSource, getRemovedCSSText, getRemoveFieldDefaults, getRemoveFieldProperties, getRemoveFieldTitle, getRemoveIcon, getRemoveIconSize, getRemoveIconStyle, getRemoveOperation, getReselectOnUpdate, getReselectOnUpdateNotifications, getResizeFieldsInRealTime, getResultSet, getReverseRTLAlign, getRollOverCanvas, getRollUnderCanvas, getRotatedHeaderMenuButtonHeight, getRotatedHeaderMenuButtonHeightAsString, getRotatedHeaderMenuButtonWidth, getRotateHeaderTitles, getRowAriaState, getRowCount, getRowCountDisplayPrecision, getRowCountRange, getRowCountStatus, getRowEndEditAction, getRowErrors, getRowHeight, getRowLocatorField, getRowLocatorFieldAsStringArray, getRowNum, getRowNumberField, getRowNumberStart, getRowNumberStyle, getRowPageTop, getRowRangeDisplay, getRowRangeDisplayStyle, getRowRangeDisplayValue, getRowRangeFormat, getRowRole, getRowSpan, getRowSpanEditMode, getRowSpanSelectionMode, getRowTop, getSaveByCell, getSaveCriteriaInViewState, getSaveDefaultSearch, getSavedSearchAdminRole, getSavedSearchAdminSeparator, getSavedSearchDS, getSavedSearchId, getSavedSearchStoredState, getSavedSearchText, getSavedViewState, getSaveLocally, getSaveRequestProperties, getScreenReaderCellSeparator, getScreenReaderIncludeFieldTitles, getScreenReaderNavigateByCell, getScreenReaderRowSeparator, getScreenReaderWriteRowLabelledBy, getScrollRedrawDelay, getScrollToCellXPosition, getScrollToCellYPosition, getScrollWheelRedrawDelay, getSearchForm, getSearchFormAsValuesManager, getSelectCellTextOnClick, getSelectedCellData, getSelectedRecords, getSelectedRecords, getSelectedState, getSelectHeaderOnSort, getSelection, getSelection, getSelectionAppearance, getSelectionType, getSelectOnEdit, getSelectOnExpandRecord, getSeparatorRowStyle, getShowAllColumns, getShowAllRecords, getShowAsynchGroupingPrompt, getShowBackgroundComponents, getShowCellContextMenus, getShowClippedHeaderTitlesOnHover, getShowClippedValuesOnHover, getShowCollapsedGroupSummary, getShowComplexFields, getShowDetailFields, getShowDropLines, getShowEllipsisWhenClipped, getShowEmptyMessage, getShowErrorIcons, getShowExpansionEditorSaveButton, getShowFilterEditor, getShowFilterEditorHovers, getShowFilterEditorTitle, getShowFilterWindowCriteriaIndicator, getShowGridSummary, getShowGroupSummary, getShowGroupSummaryInHeader, getShowGroupTitleColumn, getShowGroupTitleInFrozenBody, getShowHeader, getShowHeaderContextMenu, getShowHeaderMenuButton, getShowHeaderPartialSelection, getShowHeaderShadow, getShowHeaderSpanContextMenu, getShowHeaderSpanTitlesInFormulaBuilder, getShowHeaderSpanTitlesInHiliteEditor, getShowHeaderSpanTitlesInSortEditor, getShowHiddenFields, getShowHilitesInGroupSummary, getShowHover, getShowHoverComponents, getShowHoverOnDisabledCells, getShowInitialDragHandles, getShowNewRecordRow, getShowRecordComponents, getShowRecordComponentsByCell, getShowRollOver, getShowRollOverCanvas, getShowRollOverInExpansion, getShowRollUnderCanvas, getShowRowNumbers, getShowSavedSearchesByDS, getShowSelectedRollOverCanvas, getShowSelectedRollUnderCanvas, getShowSelectedStyle, getShowSelectionCanvas, getShowSelectionUnderCanvas, getShowSortArrow, getShowSortNumerals, getShowTreeColumnPicker, getShrinkForFreeze, getSingleCellValueProperty, getSkinImgDir, getSkipLineBreaks, getSort, getSortArrowMenuButtonSpaceOffset, getSortAscendingImage, getSortAscendingImageAsImgHTMLProperties, getSortBinaryByFileName, getSortByGroupFirst, getSortDescendingImage, getSortDescendingImageAsImgHTMLProperties, getSortDirection, getSortEditorSpanTitleSeparator, getSorterButtonTitle, getSortField, getSortFieldAscendingText, getSortFieldCount, getSortFieldDescendingText, getSortNumeralHTML, getSortNumeralMenuButtonSpaceOffset, getSortNumeralStyle, getSortSpecifier, getSortState, getSpanContextMenu, getSpannedHeaderBaseStyle, getSparseFieldState, getStopOnErrors, getStyledRowEnds, getStyleName, getSummaryFieldValue, getSummaryRow, getSummaryRowCriteria, getSummaryRowDataSource, getSummaryRowFetchRequestProperties, getSummaryRowHeight, getSummaryRowStyle, getTableRowStyle, getTallBaseStyle, getTestInstance, getTitleField, getTitleFieldValue, getToggleFreezeText, getTotalRows, getTouchScrollRedrawDelay, getTrackerImage, getTrackerImageAsImgHTMLProperties, getUnfreezeFieldText, getUngroupText, getUnknownRowCountDisplayValue, getUnremoveIcon, getUpdateOperation, getUpdateSummariesDuringEditing, getUseAdvancedCriteria, getUseAdvancedFieldPicker, getUseCellRollOvers, getUseClientFiltering, getUseFlatFields, getUseMultiSelectForFilterValueMaps, getUserCriteriaState, getUseRemoteValidators, getUseRowSpanStyling, getValidateByCell, getValidateOnChange, getValueIcon, getValueIconCursor, getValueIconHeight, getValueIconLeftPadding, getValueIconRightPadding, getValueIconSize, getValueIconWidth, getViewState, getVirtualScrolling, getVisibleRows, getWaitForSave, getWarnOnRemoval, getWarnOnRemovalMessage, getWarnOnUnmappedValueFieldChange, getWrapCells, getWrapHeaderSpanTitles, getWrapHeaderTitles, groupBy, groupSortNormalizer, hasChanges, hasChanges, hasErrors, headerHoverHTML, headerTitleClipped, hideDragHandles, hideField, hideField, hideFields, hideFields, hideFields, hideFields, hiliteViaAI, hiliteViaAI, hiliteViaAI, invalidateCache, invalidateRecordComponents, isCheckboxField, isExpanded, isExpansionField, isGrouped, isGroupNode, isPartiallySelected, isRowNumberField, isSelected, isSortField, isSummaryRecord, markForRedraw, markForRedraw, markRecordRemoved, markRecordsRemoved, markRecordsRemoved, markRecordsRemoved, markSelectionRemoved, onInit_ListGrid, openGroup, openRecordDetailGrid, openRecordEditor, preloadImages, recalculateGridSummary, recalculateSummaries, recalculateSummaries, recalculateSummaries, recordClick, recordMarkedAsRemoved, redrawHeader, refreshCell, refreshCell, refreshCellStyle, refreshData, refreshData, refreshFields, refreshRecordComponent, refreshRecordComponent, refreshRow, regroup, removeData, removeData, removeData, removeEmbeddedComponent, removeEmbeddedComponent, removeEmbeddedComponent, removeRecordClick, removeSelectedData, removeSelectedData, removeSelectedData, removeSelectedData, reorderField, reorderFields, resizeField, resort, rowClick, rowClick, rowDoubleClick, rowDoubleClick, rowHasChanges, rowHasChanges, rowHasErrors, saveAllEdits, saveAllEdits, saveAllEdits, saveEdits, saveEdits, saveEdits, saveEdits, scrollBodyTo, scrollToCell, scrollToCell, scrollToCell, scrollToColumn, scrollToColumn, scrollToRow, scrollToRow, selectAllRecords, selectRange, selectRange, selectRecord, selectRecord, selectRecord, selectRecord, selectRecords, selectRecords, selectRecords, selectRecords, selectSingleRecord, selectSingleRecord, setAddDropValues, setAddFormulaFieldText, setAddOperation, setAddSummaryFieldText, setAdvancedFieldPickerThreshold, setAdvancedFilteringText, setAiFilterWindowHint, setAiFilterWindowInstructions, setAiFilterWindowTitle, setAiHoverContentsPrefix, setAiHoverRetryDelay, setAiSortFieldMaxRecordsMessage, setAllowFilterExpressions, setAllowFilterOperators, setAllowFilterWindow, setAllowRowSpanning, setAlternateBodyStyleName, setAlternateFieldFrequency, setAlternateFieldStyles, setAlternateFieldSuffix, setAlternateRecordFrequency, setAlternateRecordStyles, setAlternateRecordSuffix, setAlwaysShowEditors, setAlwaysShowOperatorIcon, setAnimateRemoveRecord, setAnimateRemoveSpeed, setAnimateRemoveTime, setAnimateRollOver, setAnimateRollUnder, setAnimateSelection, setAnimateSelectionUnder, setApplyFormulaAfterSummary, setApplyRowCountToLength, setApplyRowNumberStyle, setApproximateRowCountFormat, setAriaRole, setArrowKeyAction, setArrowKeyEditAction, setAsyncErrorCellValue, setAsynchGroupingPrompt, setAsyncMissingCellValue, setAutoChildProperties, setAutoComplete, setAutoConfirmSaveEdits, setAutoFetchAsFilter, setAutoFetchData, setAutoFetchDisplayMap, setAutoFetchRowCount, setAutoFitAllText, setAutoFitClipFields, setAutoFitData, setAutoFitDateFields, setAutoFitExpandField, setAutoFitExtraRecords, setAutoFitFieldsFillViewport, setAutoFitFieldText, setAutoFitFieldWidths, setAutoFitHeaderHeights, setAutoFitIconFields, setAutoFitMaxColumns, setAutoFitMaxHeight, setAutoFitMaxRecords, setAutoFitMaxWidth, setAutoFitMaxWidth, setAutoFitTimeFields, setAutoFitWidth, setAutoFitWidthApproach, setAutoPersistViewState, setAutoSaveEdits, setAutoSizeHeaderSpans, setBadFormulaResultValue, setBaseStyle, setBlockingRowCountFetch, setBodyBackgroundColor, setBodyOverflow, setBodyStyleName, setBooleanBaseStyle, setBooleanFalseImage, setBooleanImageHeight, setBooleanImageWidth, setBooleanPartialImage, setBooleanTrueImage, setBriefRowRangeDisplayValue, setCanAddAISortFields, setCanAddAISummaryFields, setCanAddFormulaFields, setCanAddSummaryFields, setCanAutoFitFields, setCancelEditingConfirmationMessage, setCanCollapseGroup, setCanConfigureViaAI, setCanDragSelect, setCanDragSelectText, setCanDropInEmptyArea, setCanEdit, setCanEditHilites, setCanEditTitles, setCanExpandMultipleRecords, setCanExpandRecordProperty, setCanExpandRecords, setCanFocusInEmptyGrid, setCanFreezeFields, setCanGroupBy, setCanHiliteViaAI, setCanHover, setCanMultiGroup, setCanMultiSort, setCanPickFields, setCanPickOmittedFields, setCanRemoveRecords, setCanReorderFields, setCanRequestRowCount, setCanResizeFields, setCanSelectCells, setCanSelectGroups, setCanSelectRecordCustomizer, setCanSelectSummaryRows, setCanSort, setCanTabToHeader, setCanTabToSorter, setCellContextMenuItemsCustomizer, setCellCSSTextCustomizer, setCellFormatter, setCellHeight, setCellPadding, setCellRole, setChartConstructor, setChartType, setCheckboxFieldFalseImage, setCheckboxFieldImageHeight, setCheckboxFieldImageWidth, setCheckboxFieldPartialImage, setCheckboxFieldProperties, setCheckboxFieldTrueImage, setChildExpansionMode, setClearAllSortingText, setClearCriteriaOnFilterEditorHide, setClearFilterText, setClearFilterViaAIText, setClearSortFieldText, setClipHeaderTitles, setCollapseGroupOnRowClick, setConfigureGroupingText, setConfigureSortText, setConfigureViaAIText, setConfirmCancelEditing, setConfirmDiscardEdits, setConfirmDiscardEditsMessage, setCriteria, setCriteriaIndicatorColor, setCriteriaIndicatorHeaderColor, setData, setData, setData, setDataFetchDelay, setDataPageSize, setDataProperties, setDataSource, setDataSource, setDataSource, setDateFormatter, setDateInputFormat, setDatetimeFormatter, setDeepCloneOnEdit, setDefaultDateFieldWidth, setDefaultDateTimeFieldWidth, setDefaultEditableDateFieldWidth, setDefaultEditableDateTimeFieldWidth, setDefaultFields, setDefaultFieldWidthCustomizer, setDefaultFilterOperator, setDefaultFilterOperatorSuffix, setDefaultProperties, setDefaultTimeFieldWidth, setDeferRemoval, setDeselectOnPartialCheckboxClick, setDetailDS, setDetailDS, setDetailField, setDisabledGroupByPrompt, setDiscardDataOnSetFetchOperation, setDiscardEditsOnHideField, setDiscardEditsSaveButtonTitle, setDontAutoDestroyComponent, setDragDataAction, setDragDataCustomizer, setDragHandleFieldTitle, setDragHandleIcon, setDragHandleIconSize, setDragScrollRedrawDelay, setDragTrackerIconCustomizer, setDragTrackerMode, setDragTrackerStyle, setDragTrackerTitleCustomizer, setDrawAheadRatio, setDrawAllMaxCells, setDropValues, setDuplicateDragMessage, setEditByCell, setEditEvent, setEditFailedBaseStyle, setEditFailedCSSText, setEditFormulaFieldText, setEditOnF2Keypress, setEditOnFocus, setEditorCustomizer, setEditorValueMap, setEditorValueMap, setEditPendingBaseStyle, setEditPendingCSSText, setEditPendingMarkerStyle, setEditProxyConstructor, setEditSelectionType, setEditSummaryFieldText, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValue, setEditValues, setEmbeddedComponentIndent, setEmbeddedComponentMargin, setEmptyAIHoverContents, setEmptyCellValue, setEmptyMessage, setEmptyMessageStyle, setEmptyRowRangeDisplayValue, setEnforceVClipping, setEnterKeyEditAction, setEnumCriteriaAsInitialValues, setErrorIconHeight, setErrorIconSrc, setErrorIconWidth, setEscapeKeyEditAction, setExactRowCountFormat, setExpansionCanEdit, setExpansionComponentPoolingMode, setExpansionEditorSaveDialogPrompt, setExpansionEditorShowSaveDialog, setExpansionFieldFalseImage, setExpansionFieldImageHeight, setExpansionFieldImageShowRTL, setExpansionFieldImageShowSelected, setExpansionFieldImageStyle, setExpansionFieldImageWidth, setExpansionFieldTrueImage, setExpansionIndent, setExpansionMode, setExpansionScreen, setExplicitFetchDelay, setExportAll, setExportAlternateRowBGColor, setExportDefaultBGColor, setExportFieldAlignments, setExportFields, setExportFieldWidths, setExportHeaderHeights, setExportHiddenFieldWidth, setExportIncludeSummaries, setExportRawNumbers, setExportRawValues, setExportWidthScale, setExportWrapHeaderTitles, setFastCellUpdates, setFetchDelay, setFetchFields, setFetchFields, setFetchOperation, setFetchRequestProperties, setFieldButtonProperties, setFieldCellIcon, setFieldCriteriaText, setFieldError, setFieldError, setFieldHeaderBaseStyle, setFieldHeaderTitleStyle, setFieldIcon, setFieldMaxWidth, setFieldMinWidth, setFieldPickerFieldProperties, setFieldPickerShowSampleValues, setFieldProperties, setFieldProperties, setFields, setFields, setFieldSearchOperator, setFieldState, setFieldTitle, setFieldTitle, setFieldVisibilitySubmenuTitle, setFilterButtonPrompt, setFilterButtonProperties, setFilterByCell, setFilterEditorCriteria, setFilterEditorHeight, setFilterEditorProperties, setFilterEditorProperties, setFilterLocalData, setFilterOnKeypress, setFilterUsingText, setFilterViaAIMode, setFilterViaAIPanelInstructions, setFilterViaAIText, setFilterWindowCriteria, setFilterWindowInstructions, setFilterWindowTitle, setFirstCellStyle, setFixedFieldWidths, setFixedRecordHeights, setFormulaBuilderSpanTitleSeparator, setFreezeFieldText, setFrozenBaseStyle, setFrozenFieldsMaxWidth, setFrozenFieldsMaxWidth, setFrozenHeaderBaseStyle, setFrozenHeaderTitleStyle, setFullRowRangeDisplayValue, setGenerateClickOnEnter, setGenerateClickOnSpace, setGenerateDoubleClickOnEnter, setGenerateDoubleClickOnSpace, setGridAdditionalCriteriaText, setGridComponents, setGridComponents, setGridSummaryRecordProperty, setGroupByAsyncThreshold, setGroupByFieldSummaries, setGroupByMaxRecords, setGroupByMaxRecordsExceededMessage, setGroupByText, setGroupIcon, setGroupIconSize, setGroupIconStyle, setGroupIndentSize, setGroupLeadingIndent, setGroupNodeBaseStyle, setGroupNodeStyle, setGroupSortDirection, setGroupSortNormalizer, setGroupStartOpen, setGroupStartOpen, setGroupState, setGroupSummaryRecordProperty, setGroupSummaryStyle, setGroupTitleColumnProperties, setGroupTitleField, setHeaderAriaRole, setHeaderAutoFitEvent, setHeaderBackgroundColor, setHeaderBarStyle, setHeaderBaseStyle, setHeaderButtonAriaRole, setHeaderButtonAriaState, setHeaderButtonProperties, setHeaderHeight, setHeaderHoverAlign, setHeaderHoverFormatter, setHeaderHoverHeight, setHeaderHoverOpacity, setHeaderHoverStyle, setHeaderHoverVAlign, setHeaderHoverWidth, setHeaderHoverWrap, setHeaderMenuButtonHeight, setHeaderMenuButtonHeight, setHeaderMenuButtonIcon, setHeaderMenuButtonIconHeight, setHeaderMenuButtonIconWidth, setHeaderMenuButtonSnapOffsetLeft, setHeaderMenuButtonWidth, setHeaderRadius, setHeaderShadowColor, setHeaderShadowHOffset, setHeaderShadowSoftness, setHeaderShadowVOffset, setHeaderSpanBaseStyle, setHeaderSpanButtonProperties, setHeaderSpanHeaderTitle, setHeaderSpanHeight, setHeaderSpans, setHeaderSpanTitle, setHeaderSpanTitleStyle, setHeaderTitleStyle, setHeaderTitleVAlign, setHideEmptySummaryRow, setHideFilterEditorTitle, setHideOnPhone, setHideOnTablet, setHiliteCanReplaceValue, setHiliteEditorSpanTitleSeparator, setHiliteHTMLAfterFormat, setHiliteIconHeight, setHiliteIconLeftPadding, setHiliteIconPosition, setHiliteIconRightPadding, setHiliteIcons, setHiliteIconSize, setHiliteIconWidth, setHiliteProperty, setHiliteReplaceValueFieldTitle, setHiliteRowOnFocus, setHilites, setHiliteState, setHiliteViaAIMode, setHiliteViaAIText, setHoverCustomizer, setHoverMode, setHoverScreen, setHoverStyle, setIconCursor, setImageSize, setImplicitCriteria, setImplicitCriteria, setImplicitCriteria, setInactiveCellFormatter, setIncludeHilitesInSummaryFields, setIncludeInSummaryProperty, setInitialCriteria, setInitialSort, setInstantScrollTrackRedraw, setInvalidSummaryValue, setIsSeparatorProperty, setLastCellStyle, setLeaveHeaderMenuButtonSpace, setLeaveScrollbarGap, setLinkTextProperty, setListEndEditAction, setLoadingDataMessage, setLoadingDataMessageStyle, setLoadingMessage, setLoadingRowCountDisplayIcoHeight, setLoadingRowCountDisplayIcon, setLoadingRowCountDisplayIconWidth, setLocateColumnsBy, setLocateRowsBy, setLogicalStructure, setLongTextEditorThreshold, setLongTextEditorType, setMaxExpandedRecords, setMaxExpandedRecordsPrompt, setMaximumRowCountFormat, setMaxSummaryRowRecords, setMinFieldWidth, setMinHeight, setMinimumCellHeight, setMinimumRowCountFormat, setMissingSummaryFieldValue, setModalEditing, setMultiGroupDialogDefaults, setMultiGroupDialogProperties, setMultiSortDialogDefaults, setMultiSortDialogProperties, setNavigateOnTab, setNeverValidate, setNewRecordRowMessage, setNewSearchText, setNormalBaseStyle, setNormalCellHeight, setNoSavedSearchesText, setNullGroupTitle, setOfflineMessageStyle, setOriginBaseStyle, setOverflow, setPendingAsyncCellValue, setPlaceholderAIHoverContents, setPoolComponentsPerColumn, setPreserveFocusStylingOnMouseOut, setPreserveWhitespace, setPreventDuplicates, setPrintAutoFit, setPrintBaseStyle, setPrintBooleanBaseStyle, setPrintBooleanFalseImage, setPrintBooleanPartialImage, setPrintBooleanTrueImage, setPrintCheckboxFieldFalseImage, setPrintCheckboxFieldPartialImage, setPrintCheckboxFieldTrueImage, setPrintHeaderStyle, setPrintMaxRows, setPrintWrapCells, setProgressiveLoading, setQuickDrawAheadRatio, setRangeRowCountFormat, setRecordBaseStyleProperty, setRecordCanRemoveProperty, setRecordCanSelectProperty, setRecordCellRoleProperty, setRecordComponentHeight, setRecordComponentPoolingMode, setRecordComponentPosition, setRecordDetailDSProperty, setRecordEditProperty, setRecordEnabledProperty, setRecordRadius, setRecordRadiusTargets, setRecordRowAriaStateProperty, setRecordRowRoleProperty, setRecords, setRecordScreen, setRecordShowRollOverProperty, setRecordSummaryAttributePrefix, setRecordSummaryBaseStyle, setRemovedCSSText, setRemoveFieldProperties, setRemoveFieldTitle, setRemoveIcon, setRemoveIconSize, setRemoveIconStyle, setRemoveOperation, setReselectOnUpdate, setReselectOnUpdateNotifications, setResizeFieldsInRealTime, setReverseRTLAlign, setRollOverCanvasProperties, setRollUnderCanvasProperties, setRotatedHeaderMenuButtonHeight, setRotatedHeaderMenuButtonHeight, setRotatedHeaderMenuButtonWidth, setRotateHeaderTitles, setRowAriaState, setRowCountDisplayPrecision, setRowEndEditAction, setRowErrors, setRowErrors, setRowLocatorField, setRowLocatorField, setRowNumberFieldProperties, setRowNumberStart, setRowNumberStyle, setRowRangeDisplayStyle, setRowRangeFormat, setRowRole, setRowSpanEditMode, setRowSpanSelectionMode, setSaveByCell, setSaveCriteriaInViewState, setSaveDefaultSearch, setSavedSearchAdminRole, setSavedSearchDS, setSavedSearchId, setSavedSearchStoredState, setSavedSearchText, setSaveLocally, setSaveRequestProperties, setScreenReaderCellSeparator, setScreenReaderIncludeFieldTitles, setScreenReaderNavigateByCell, setScreenReaderRowSeparator, setScreenReaderWriteRowLabelledBy, setScrollRedrawDelay, setScrollToCellXPosition, setScrollToCellYPosition, setScrollWheelRedrawDelay, setSearchForm, setSearchForm, setSelectCellTextOnClick, setSelectedState, setSelectHeaderOnSort, setSelectionAppearance, setSelectionCanvasProperties, setSelectionType, setSelectionUnderCanvasProperties, setSelectOnEdit, setSelectOnExpandRecord, setSeparatorRowStyle, setShowAllColumns, setShowAllRecords, setShowAsynchGroupingPrompt, setShowBackgroundComponents, setShowCellContextMenus, setShowClippedHeaderTitlesOnHover, setShowClippedValuesOnHover, setShowCollapsedGroupSummary, setShowComplexFields, setShowDetailFields, setShowDropLines, setShowEllipsisWhenClipped, setShowEmptyMessage, setShowErrorIcons, setShowFilterEditor, setShowFilterEditorHovers, setShowFilterEditorTitle, setShowFilterWindowCriteriaIndicator, setShowGridSummary, setShowGroupSummary, setShowGroupSummaryInHeader, setShowGroupTitleColumn, setShowGroupTitleInFrozenBody, setShowHeader, setShowHeaderContextMenu, setShowHeaderMenuButton, setShowHeaderPartialSelection, setShowHeaderShadow, setShowHeaderSpanContextMenu, setShowHeaderSpanTitlesInFormulaBuilder, setShowHeaderSpanTitlesInHiliteEditor, setShowHeaderSpanTitlesInSortEditor, setShowHiddenFields, setShowHilitesInGroupSummary, setShowHover, setShowHoverComponents, setShowHoverOnDisabledCells, setShowInitialDragHandles, setShowNewRecordRow, setShowRecordComponents, setShowRecordComponentsByCell, setShowRollOver, setShowRollOverCanvas, setShowRollOverInExpansion, setShowRollUnderCanvas, setShowRowNumbers, setShowSavedSearchesByDS, setShowSelectedRollOverCanvas, setShowSelectedRollUnderCanvas, setShowSelectedStyle, setShowSelectionCanvas, setShowSelectionUnderCanvas, setShowSortArrow, setShowSortNumerals, setShowTreeColumnPicker, setShrinkForFreeze, setSingleCellValueProperty, setSkinImgDir, setSkipLineBreaks, setSort, setSortArrowMenuButtonSpaceOffset, setSortAscendingImage, setSortAscendingImage, setSortBinaryByFileName, setSortByGroupFirst, setSortDescendingImage, setSortDescendingImage, setSortDirection, setSortEditorSpanTitleSeparator, setSorterButtonTitle, setSortField, setSortField, setSortField, setSortFieldAscendingText, setSortFieldDescendingText, setSortNumeralHTMLCustomizer, setSortNumeralMenuButtonSpaceOffset, setSortNumeralStyle, setSortState, setSpannedHeaderBaseStyle, setSparseFieldState, setStopOnErrors, setStyledRowEnds, setStyleName, setSummaryRowCriteria, setSummaryRowDataSource, setSummaryRowFetchRequestProperties, setSummaryRowHeight, setSummaryRowStyle, setTableRowStyle, setTallBaseStyle, setTitleField, setTouchScrollRedrawDelay, setTrackerImage, setTrackerImage, setUnfreezeFieldText, setUngroupText, setUnknownRowCountDisplayValue, setUnremoveIcon, setUpdateOperation, setUpdateSummariesDuringEditing, setUseAdvancedCriteria, setUseAdvancedFieldPicker, setUseCellRollOvers, setUseClientFiltering, setUseFlatFields, setUseMultiSelectForFilterValueMaps, setUserCriteriaState, setUseRemoteValidators, setUserFormula, setUserFormula, setUserFormula, setUserFormulaText, setUserFormulaText, setUserFormulaText, setUseRowSpanStyling, setUserSummary, setUserSummary, setUserSummary, setUserSummaryText, setUserSummaryText, setUserSummaryText, setValidateByCell, setValidateOnChange, setValueIconHeight, setValueIconLeftPadding, setValueIconRightPadding, setValueIconSize, setValueIconWidth, setValueMap, setValueMap, setViewState, setVirtualScrolling, setWaitForSave, setWarnOnRemoval, setWarnOnRemovalMessage, setWarnOnUnmappedValueFieldChange, setWrapCells, setWrapHeaderSpanTitles, setWrapHeaderTitles, shouldIncludeHiliteInSummaryField, showAIFilterWindow, showAIHiliteWindow, showDragHandles, showField, showField, showFields, showFields, showFields, showFields, showFilterWindow, showRecordComponent, sort, sort, sort, sort, startEditing, startEditing, startEditing, startEditing, startEditingNew, startEditingNew, startEditingNew, stopHover, summaryUpdated, toggleSort, transferRecords, transferSelectedData, transferSelectedData, unfreezeField, unfreezeField, unfreezeField, unfreezeField, unfreezeFields, unfreezeFields, ungroup, unmarkRecordRemoved, unsort, updateData, updateData, updateData, updateRecordComponent, userSelectAllRecords, validateCell, validateCell, validateRow, willFetchData, willFetchDataMethods inherited from class com.smartgwt.client.widgets.layout.VLayoutsetDefaultProperties, setLogicalStructureMethods inherited from class com.smartgwt.client.widgets.layout.LayoutaddMember, addMember, addMember, addMember, addMemberPostCreate, addMemberPostCreate, addMemberPreCreate, addMemberPreCreate, addMembers, addMembers, addMembersChangedHandler, getAnimateMembers, getAnimateMemberTime, getCanDropComponents, getChildTabPosition, getDefaultResizeBars, getDropComponent, getDropLine, getDropLineThickness, getDropPosition, getEnforcePolicy, getHPolicy, getLayoutBottomMargin, getLayoutEndMargin, getLayoutLeftMargin, getLayoutMargin, getLayoutRightMargin, getLayoutStartMargin, getLayoutTopMargin, getLocateMembersBy, getLocateMembersType, getManagePercentBreadth, getMember, getMember, getMemberDefaultBreadth, getMemberNumber, getMemberNumber, getMemberOverlap, getMembers, getMembersLength, getMembersMargin, getMinMemberLength, getMinMemberSize, getPaddingAsLayoutMargin, getResizeBar, getResizeBarClass, getResizeBarSize, getReverseOrder, getShowDragPlaceHolder, getStackZIndex, getVertical, getVPolicy, hasMember, hideDropLine, hideMember, hideMember, layoutIsDirty, onInit_Layout, reflow, reflow, reflowNow, removeMember, removeMembers, removeMembers, reorderMember, reorderMembers, replaceMember, revealChild, revealChild, setAlign, setAlign, setAnimateMembers, setAnimateMemberTime, setCanDropComponents, setDefaultLayoutAlign, setDefaultLayoutAlign, setDefaultProperties, setDefaultResizeBars, setDropLineProperties, setDropLineThickness, setEnforcePolicy, setHPolicy, setLayoutBottomMargin, setLayoutEndMargin, setLayoutLeftMargin, setLayoutMargin, setLayoutRightMargin, setLayoutStartMargin, setLayoutTopMargin, setLocateMembersBy, setLocateMembersType, setLogicalStructure, setManagePercentBreadth, setMemberOverlap, setMembers, setMembersMargin, setMinBreadthMember, setMinBreadthMember, setMinBreadthMember, setMinMemberLength, setMinMemberSize, setPaddingAsLayoutMargin, setPlaceHolderDefaults, setPlaceHolderProperties, setResizeBarClass, setResizeBarSize, setReverseOrder, setShowDragPlaceHolder, setStackZIndex, setVertical, setVisibleMember, setVPolicy, showMember, showMemberMethods inherited from class com.smartgwt.client.widgets.CanvasaddChild, addChild, addChild, addChild, addChild, addClearHandler, addClickHandler, addDoubleClickHandler, addDragMoveHandler, addDragRepositionMoveHandler, addDragRepositionStartHandler, addDragRepositionStopHandler, addDragResizeMoveHandler, addDragResizeStartHandler, addDragResizeStopHandler, addDragStartHandler, addDragStopHandler, addDropHandler, addDropMoveHandler, addDropOutHandler, addDropOverHandler, addFocusChangedHandler, addHoverHandler, addHoverHiddenHandler, addKeyDownHandler, addKeyPressHandler, addMouseDownHandler, addMouseMoveHandler, addMouseOutHandler, addMouseOverHandler, addMouseStillDownHandler, addMouseUpHandler, addMouseWheelHandler, addMovedHandler, addParentMovedHandler, addPeer, addPeer, addPeer, addPeer, addResizedHandler, addRightMouseDownHandler, addRuleContextChangedHandler, addScrolledHandler, addShowContextMenuHandler, addSnapAlignCandidate, addStyleName, addVisibilityChangedHandler, adjustForContent, animateFade, animateFade, animateFade, animateFade, animateFade, animateFade, animateFade, animateFade, animateHide, animateHide, animateHide, animateHide, animateHide, animateHide, animateHide, animateMove, animateMove, animateMove, animateMove, animateRect, animateRect, animateRect, animateRect, animateResize, animateResize, animateResize, animateResize, animateScroll, animateScroll, animateScroll, animateScroll, animateScroll, animateScroll, animateShow, animateShow, animateShow, animateShow, animateShow, animateShow, animateShow, asSGWTComponent, blur, bringToFront, clear, clearExplicitTabIndex, clickMaskUp, clickMaskUp, contains, contains, containsEvent, containsEventTarget, containsFocus, containsPoint, containsPoint, dataContextChanged, deparent, depeer, disable, doValueDictation, doVoiceCommand, enable, encloses, focus, focusAfterGroup, focusAtEnd, focusInNextTabElement, focusInPreviousTabElement, getAbsoluteLeft, getAbsoluteTop, getAccessKey, getAdaptiveHeightPriority, getAdaptiveWidthPriority, getAlwaysManageFocusNavigation, getAlwaysShowScrollbars, getAnimateAcceleration, getAnimateFadeTime, getAnimateHideAcceleration, getAnimateHideEffect, getAnimateHideTime, getAnimateMoveAcceleration, getAnimateMoveTime, getAnimateRectAcceleration, getAnimateRectTime, getAnimateResizeAcceleration, getAnimateResizeLayoutMode, getAnimateResizeTime, getAnimateScrollAcceleration, getAnimateScrollTime, getAnimateShowAcceleration, getAnimateShowEffect, getAnimateShowTime, getAnimateTime, getAppImgDir, getAriaHandleID, getAutoMaskComponents, getAutoParent, getAutoPopulateData, getAutoShowParent, getBackgroundColor, getBackgroundImage, getBackgroundPosition, getBackgroundRepeat, getBorder, getBorderRadius, getBottom, getById, getByJSObject, getByLocalId, getCanAcceptDrop, getCanAdaptHeight, getCanAdaptWidth, getCanDrag, getCanDragReposition, getCanDragResize, getCanDragScroll, getCanDrop, getCanDropBefore, getCanFocus, getCanSelectText, getCanvasAutoChild, getCanvasItem, getChildren, getChildrenResizeSnapAlign, getChildrenSnapAlign, getChildrenSnapCenterAlign, getChildrenSnapEdgeAlign, getChildrenSnapResizeToGrid, getChildrenSnapToGrid, getClassName, getComponentMask, getComponentMaskDefaults, getContentElement, getContents, getContextMenu, getCorrectZoomOverflow, getCursor, getDataContext, getDataPath, getDefaultHeight, getDefaultWidth, getDefiningProperty, getDefiningPropertyName, getDefiningPropertyNameOptions, getDestroyed, getDestroying, getDisabled, getDisabledCursor, getDisableTouchScrollingForDrag, getDoubleClickDelay, getDragAppearance, getDragIntersectStyle, getDragMaskType, getDragMaxHeight, getDragMaxWidth, getDragMinHeight, getDragMinWidth, getDragOpacity, getDragRepositionAppearance, getDragRepositionCursor, getDragResizeAppearance, getDragScrollDelay, getDragStartDistance, getDragTarget, getDragTargetAsString, getDragType, getDropTarget, getDropTargetAsString, getDropTypes, getDropTypesAsString, getDynamicContents, getEdgeBackgroundColor, getEdgeCenterBackgroundColor, getEdgeImage, getEdgeMarginSize, getEdgeOffset, getEdgeOpacity, getEdgeShowCenter, getEdgeSize, getEditNode, getEditProxy, getElement, getElement, getEnableWhen, getEndLine, getEventEdge, getEventEdge, getExtraSpace, getFacetId, getFloatingScrollbars, getFormItemAutoChild, getForwardSVGeventsToObject, getFullDataPath, getGroupBorderCSS, getGroupLabelBackgroundColor, getGroupLabelStyleName, getGroupPadding, getGroupTitle, getHeight, getHeightAsString, getHideUsingDisplayNone, getHoverAlign, getHoverAutoDestroy, getHoverAutoFitMaxWidth, getHoverAutoFitMaxWidthAsString, getHoverAutoFitWidth, getHoverComponent, getHoverDelay, getHoverFocusKey, getHoverHeight, getHoverHTML, getHoverMoveWithMouse, getHoverOpacity, getHoverPersist, getHoverVAlign, getHoverWidth, getHoverWrap, getHSnapPosition, getHSnapPosition, getHtmlElement, getHtmlElementAsString, getHtmlPosition, getImage, getImgURL, getImgURL, getInnerContentHeight, getInnerContentWidth, getInnerHeight, getInnerWidth, getIsGroup, getIsPrinting, getIsRuleScope, getIsSnapAlignCandidate, getKeepInParentRect, getLayoutAlign, getLeaveGroupLabelSpace, getLeavePageSpace, getLeft, getLeftAsString, getLocalId, getLocateByIDOnly, getLocateChildrenBy, getLocateChildrenType, getLocatePeersBy, getLocatePeersType, getLocatorName, getMargin, getMasterCanvas, getMasterElement, getMatchElement, getMatchElementHeight, getMatchElementWidth, getMaxHeight, getMaxWidth, getMaxZoomOverflowError, getMenuConstructor, getMinNonEdgeSize, getMinWidth, getMomentumScrollMinSpeed, getMouseStillDownDelay, getMouseStillDownInitialDelay, getName, getNativeAutoHideScrollbars, getNextZIndex, getNoDoubleClicks, getNoDropCursor, getOffsetHeight, getOffsetWidth, getOffsetX, getOffsetY, getOpacity, getOuterElement, getPadding, getPageBottom, getPageLeft, getPageRect, getPageRight, getPageTop, getPaletteDefaults, getPanelContainer, getParentCanvas, getParentElement, getPeers, getPendingMarkerStyle, getPendingMarkerVisible, getPercentBox, getPercentSource, getPersistentMatchElement, getPointerSettings, getPointerTarget, getPointerTargetAsString, getPosition, getPrefix, getPrintChildrenAbsolutelyPositioned, getPrintHTML, getPrintHTML, getPrintStyleName, getPrompt, getProportionalResizeModifiers, getProportionalResizing, getReceiveScrollbarEvents, getRect, getRedrawOnResize, getResizeBarTarget, getResizeFrom, getRight, getRuleContext, getRuleContext, getRuleScope, getScrollbarSize, getScrollBottom, getScrollHeight, getScrollLeft, getScrollRight, getScrollTop, getScrollWidth, getShadowColor, getShadowDepth, getShadowHOffset, getShadowImage, getShadowOffset, getShadowSoftness, getShadowSpread, getShadowVOffset, getShouldPrint, getShowCustomScrollbars, getShowDragShadow, getShowEdges, getShowPointer, getShowResizeBar, getShowShadow, getShowSnapGrid, getShrinkElementOnHide, getSizeMayChangeOnRedraw, getSnapAlignCandidates, getSnapAlignCenterLineStyle, getSnapAlignEdgeLineStyle, getSnapAxis, getSnapEdge, getSnapGridLineProperties, getSnapGridStyle, getSnapHDirection, getSnapHGap, getSnapOffsetLeft, getSnapOffsetTop, getSnapOnDrop, getSnapPosition, getSnapPosition, getSnapResizeToAlign, getSnapResizeToGrid, getSnapTo, getSnapToAlign, getSnapToCenterAlign, getSnapToEdgeAlign, getSnapToGrid, getSnapVDirection, getSnapVGap, getStartLine, getTabIndex, getTestDataContext, getTitle, getTooltip, getTop, getTopAsString, getTopElement, getTopLevelComponents, getUpdateTabPositionOnDraw, getUpdateTabPositionOnReparent, getUseBackMask, getUseCSSShadow, getUseDragMask, getUseImageForSVG, getUseNativeDrag, getUseOpacityFilter, getUseTouchScrolling, getValuesManager, getValuesManagerAsString, getViewportHeight, getViewportWidth, getVisibility, getVisibleHeight, getVisibleWhen, getVisibleWidth, getVSnapPosition, getVSnapPosition, getWidth, getWidthAsString, getWorkflows, getZIndex, getZIndex, handleHover, hide, hideClickMask, hideClickMask, hideComponentMask, hideComponentMask, hideContextMenu, imgHTML, imgHTML, imgHTML, initComplete, intersects, isDirty, isDisabled, isFocused, isVisible, keyUp, layoutChildren, linkHTML, linkHTML, linkHTML, linkHTML, linkHTML, linkHTML, markForDestroy, moveAbove, moveBelow, moveBy, moveTo, onAttach, onDetach, pageScrollDown, pageScrollUp, parentResized, placeNear, placeNear, placeNear, print, print, print, print, printComponents, provideRuleContext, provideRuleContext, redraw, redraw, registerFontScaledPaddingStyles, removeChild, removeChild, removePeer, removePeer, removeRuleContext, removeSnapAlignCandidate, resizeAutoChildAttributes, resizeBy, resizeControls, resizeControlsTo, resizeFonts, resizeFonts, resizeFonts, resizeFontsTo, resizeIcons, resizePadding, resizePadding, resizeTo, resizeTo, scrollBy, scrollByPercent, scrollTo, scrollTo, scrollTo, scrollTo, scrollTo, scrollToBottom, scrollToLeft, scrollToPercent, scrollToRight, scrollToTop, sendToBack, setAccessKey, setAdaptHeightByCustomizer, setAdaptiveHeightPriority, setAdaptiveWidthPriority, setAdaptWidthByCustomizer, setAllowExternalFilters, setAlwaysManageFocusNavigation, setAlwaysShowScrollbars, setAnimateAcceleration, setAnimateFadeTime, setAnimateHideAcceleration, setAnimateHideEffect, setAnimateHideTime, setAnimateMoveAcceleration, setAnimateMoveTime, setAnimateRectAcceleration, setAnimateRectTime, setAnimateResizeAcceleration, setAnimateResizeLayoutMode, setAnimateResizeTime, setAnimateScrollAcceleration, setAnimateScrollTime, setAnimateShowAcceleration, setAnimateShowEffect, setAnimateShowTime, setAnimateTime, setAppImgDir, setAriaState, setAutoChildConstructor, setAutoChildProperties, setAutoChildProperties, setAutoChildProperties, setAutoChildProperties, setAutoChildVisibility, setAutoHeight, setAutoMaskComponents, setAutoParent, setAutoPopulateData, setAutoResizeAutoChildAttributes, setAutoResizeIcons, setAutoShowParent, setAutoWidth, setBackgroundColor, setBackgroundImage, setBackgroundPosition, setBackgroundRepeat, setBorder, setBorderRadius, setBottom, setCanAcceptDrop, setCanAdaptHeight, setCanAdaptWidth, setCanDrag, setCanDragReposition, setCanDragResize, setCanDragScroll, setCanDrop, setCanDropBefore, setCanFocus, setCanSelectText, setChildren, setChildrenResizeSnapAlign, setChildrenSnapAlign, setChildrenSnapCenterAlign, setChildrenSnapEdgeAlign, setChildrenSnapResizeToGrid, setChildrenSnapToGrid, setComponentMaskDefaults, setContents, setContextMenu, setCorrectZoomOverflow, setCursor, setDataContext, setDataPath, setDefaultHeight, setDefaultPageSpace, setDefaultProperties, setDefaultShowCustomScrollbars, setDefaultWidth, setDefiningProperty, setDefiningPropertyNameOptions, setDisabled, setDisabledCursor, setDisableTouchScrollingForDrag, setDoubleClickDelay, setDragAppearance, setDragIntersectStyle, setDragMaskType, setDragMaxHeight, setDragMaxWidth, setDragMinHeight, setDragMinWidth, setDragOpacity, setDragRepositionAppearance, setDragRepositionCursor, setDragResizeAppearance, setDragScrollDelay, setDragStartDistance, setDragTarget, setDragTarget, setDragType, setDropTarget, setDropTarget, setDropTypes, setDropTypes, setDynamicContents, setEdgeBackgroundColor, setEdgeCenterBackgroundColor, setEdgeImage, setEdgeMarginSize, setEdgeOffset, setEdgeOpacity, setEdgeShowCenter, setEdgeSize, setEditMode, setEditMode, setEditMode, setElement, setEnableWhen, setEndLine, setExtraSpace, setFacetId, setFloatingScrollbars, setForwardSVGeventsToObject, setGroupBorderCSS, setGroupLabelBackgroundColor, setGroupLabelStyleName, setGroupPadding, setGroupTitle, setHeight, setHeight, setHeight, setHeight100, setHideUsingDisplayNone, setHoverAlign, setHoverAutoDestroy, setHoverAutoFitMaxWidth, setHoverAutoFitMaxWidth, setHoverAutoFitWidth, setHoverDelay, setHoverFocusKey, setHoverHeight, setHoverMoveWithMouse, setHoverOpacity, setHoverPersist, setHoverVAlign, setHoverWidth, setHoverWrap, setHtmlElement, setHtmlElement, setHtmlPosition, setImage, setImage, setInitHandler, setIsGroup, setIsRuleScope, setIsSnapAlignCandidate, setKeepInParentRect, setKeepInParentRect, setKeepInParentRect, setLayoutAlign, setLayoutAlign, setLeaveGroupLabelSpace, setLeavePageSpace, setLeft, setLeft, setLocateByIDOnly, setLocateChildrenBy, setLocateChildrenType, setLocatePeersBy, setLocatePeersType, setLocatorName, setLocatorParent, setLocatorParent, setLogicalStructure, setMargin, setMatchElement, setMatchElementHeight, setMatchElementWidth, setMaxHeight, setMaxWidth, setMaxZoomOverflowError, setMenuConstructor, setMinNonEdgeSize, setMinWidth, setMomentumScrollMinSpeed, setMouseStillDownDelay, setMouseStillDownInitialDelay, setName, setNativeAutoHideScrollbars, setNeverUseFilters, setNoDoubleClicks, setNoDropCursor, setOpacity, setPadding, setPageLeft, setPageTop, setPanelContainer, setParentCanvas, setParentElement, setPeers, setPendingMarkerStyle, setPendingMarkerVisible, setPercentBox, setPercentSource, setPersistentMatchElement, setPointerSettings, setPointerTarget, setPosition, setPrefix, setPrintChildrenAbsolutelyPositioned, setPrintStyleName, setPrompt, setProportionalResizeModifiers, setProportionalResizing, setReceiveScrollbarEvents, setRect, setRect, setRedrawOnResize, setRelativeTabPosition, setResizeBarTarget, setResizeFrom, setResizeFrom, setRight, setRuleScope, setScrollbarConstructor, setScrollbarSize, setShadowColor, setShadowDepth, setShadowHOffset, setShadowImage, setShadowOffset, setShadowSoftness, setShadowSpread, setShadowVOffset, setShouldPrint, setShowCustomScrollbars, setShowDragShadow, setShowEdges, setShowPointer, setShowResizeBar, setShowShadow, setShowSnapGrid, setShrinkElementOnHide, setSizeMayChangeOnRedraw, setSmoothFade, setSnapAlignCandidates, setSnapAlignCenterLineStyle, setSnapAlignEdgeLineStyle, setSnapAxis, setSnapEdge, setSnapGridLineProperties, setSnapGridStyle, setSnapHDirection, setSnapHGap, setSnapOffsetLeft, setSnapOffsetTop, setSnapOnDrop, setSnapResizeToAlign, setSnapResizeToGrid, setSnapTo, setSnapToAlign, setSnapToCenterAlign, setSnapToEdgeAlign, setSnapToGrid, setSnapVDirection, setSnapVGap, setStartLine, setTabIndex, setTestDataContext, setTitle, setTooltip, setTop, setTop, setUpdateTabPositionOnDraw, setUpdateTabPositionOnReparent, setUseBackMask, setUseCSSShadow, setUseDragMask, setUseImageForSVG, setUseNativeDrag, setUseOpacityFilter, setUseTouchScrolling, setValuesManager, setValuesManager, setVisibility, setVisible, setVisibleWhen, setWidth, setWidth, setWidth, setWidth100, setWorkflows, setZIndex, shouldDragScroll, show, showClickMask, showComponentMask, showComponentMask, showNextTo, showNextTo, showNextTo, showNextTo, showPendingMarker, showPrintPreview, showPrintPreview, showPrintPreview, showPrintPreview, showRecursively, startDebuggingOverflow, stopDebuggingOverflow, supportsValueDictation, supportsVoiceCommands, updateChildTabPosition, updateChildTabPositions, updateEditNode, updateHover, updateHover, updateShadow, updateTabPositionForDraw, visibleAtPointMethods inherited from class com.smartgwt.client.widgets.BaseWidgetaddDrawHandler, addDynamicProperty, addDynamicProperty, addDynamicProperty, addDynamicProperty, applyFactoryProperties, clearDynamicProperty, completeCreation, destroy, doAddHandler, doInit, doOnRender, draw, equals, error, errorIfNotCreated, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDateArray, getAttributeAsDouble, getAttributeAsElement, getAttributeAsFloat, getAttributeAsFloatArray, getAttributeAsInt, getAttributeAsIntArray, getAttributeAsJavaScriptObject, getAttributeAsMap, getAttributeAsObject, getAttributeAsRecord, getAttributeAsString, getAttributeAsStringArray, getConfig, getDOM, getHandlerCount, getID, getInnerHTML, getJsObj, getOrCreateJsObj, getRef, getScClassName, hasAutoAssignedID, hasDynamicProperty, hashCode, initNativeObject, internalSetID, internalSetID, isConfigOnly, isCreated, isDrawn, isFactoryCreated, onBind, onDestroy, onDraw, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setConfig, setConfigOnly, setDefaultProperties, setDragTracker, setFactoryCreated, setID, setJavaScriptObject, setLogicalStructure, setLogicalStructure, setNullProperty, setPosition, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setScClassName, toStringMethods inherited from class com.google.gwt.user.client.ui.WidgetaddAttachHandler, addBitlessDomHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, createHandlerManager, delegateEvent, doAttachChildren, doDetachChildren, fireEvent, getLayoutData, getParent, isAttached, isOrWasAttached, onBrowserEvent, onLoad, onUnload, removeFromParent, setLayoutData, sinkEvents, unsinkEventsMethods inherited from class com.google.gwt.user.client.ui.UIObjectaddStyleDependentName, ensureDebugId, ensureDebugId, ensureDebugId, getStyleElement, getStyleName, getStylePrimaryName, getStylePrimaryName, isVisible, onEnsureDebugId, removeStyleDependentName, removeStyleName, resolvePotentialElement, setElement, setPixelSize, setSize, setStyleDependentName, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setVisible, sinkBitlessEventMethods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.smartgwt.client.widgets.DataBoundComponentgetOrCreateJsObjMethods inherited from interface com.google.gwt.event.shared.HasHandlersfireEvent
- 
Constructor Details- 
EditTreepublic EditTree()
- 
EditTree
 
- 
- 
Method Details- 
getOrCreateRef
- 
changeAutoChildDefaultsChanges the defaults for Canvas AutoChildren namedautoChildName.- Parameters:
- autoChildName- name of an AutoChild to customize the defaults for.
- defaults- Canvas defaults to apply. These defaults override any existing properties without destroying or wiping out non-overridden properties. For usage tips on this param, see- SGWTProperties.
- See Also:
 
- 
changeAutoChildDefaultsChanges the defaults for FormItem AutoChildren namedautoChildName.- Parameters:
- autoChildName- name of an AutoChild to customize the defaults for.
- defaults- FormItem defaults to apply. These defaults override any existing properties without destroying or wiping out non-overridden properties. For usage tips on this param, see- SGWTProperties.
- See Also:
 
- 
create
- 
setAllowNestedDropsControls whether components can be dropped into other components which support child components.When enabled, during a drop interaction in which a PaletteNodeorEditNodeis the drop data, theComponent Schemaof the current candidate drop target is inspected to see whether that parent allows children of the type being dropped. If it does, the drop will result in a call toaddNode()for a paletteNode or for an existingEditNodein the same tree.Specific components can disable nested drops by explicitly setting EditProxy.allowNestedDropsto false.This mode is enabled by default unless explicitly disabled by setting this property to false. - Parameters:
- allowNestedDrops- New allowNestedDrops value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getAllowNestedDropsControls whether components can be dropped into other components which support child components.When enabled, during a drop interaction in which a PaletteNodeorEditNodeis the drop data, theComponent Schemaof the current candidate drop target is inspected to see whether that parent allows children of the type being dropped. If it does, the drop will result in a call toaddNode()for a paletteNode or for an existingEditNodein the same tree.Specific components can disable nested drops by explicitly setting EditProxy.allowNestedDropsto false.This mode is enabled by default unless explicitly disabled by setting this property to false. - Returns:
- Current allowNestedDrops value. Default value is null
 
- 
setAutoEditNewNodesNew nodes added to the editContext are automatically placed into edit mode if the new node's parent is in edit mode. To suppress this action setautoEditNewNodesto false.- Parameters:
- autoEditNewNodes- New autoEditNewNodes value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getAutoEditNewNodesNew nodes added to the editContext are automatically placed into edit mode if the new node's parent is in edit mode. To suppress this action setautoEditNewNodesto false.- Returns:
- Current autoEditNewNodes value. Default value is null
 
- 
setCanDragGroupShould the group selection box shown whencanGroupSelectis true allow dragging the group as a whole?Treated as trueif not set andcanGroupSelectis true.- Parameters:
- canDragGroup- New canDragGroup value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getCanDragGroupShould the group selection box shown whencanGroupSelectis true allow dragging the group as a whole?Treated as trueif not set andcanGroupSelectis true.- Returns:
- Current canDragGroup value. Default value is null
 
- 
setCanGroupSelectShould a group selection outline covering the outermost bounding boxes of all selected components be shown in this container?Treated as trueif not set and hoop selection is enabled (seeEditProxy.canSelectChildrenandselectionType.- Parameters:
- canGroupSelect- New canGroupSelect value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getCanGroupSelectShould a group selection outline covering the outermost bounding boxes of all selected components be shown in this container?Treated as trueif not set and hoop selection is enabled (seeEditProxy.canSelectChildrenandselectionType.- Returns:
- Current canGroupSelect value. Default value is null
 
- 
setCanSaveSearchesOption to save searches is disabled for editTreeNote : This is an advanced setting - Overrides:
- setCanSaveSearchesin class- ListGrid
- Parameters:
- canSaveSearches- New canSaveSearches value. Default value is false
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getCanSaveSearchespublic boolean getCanSaveSearches()Option to save searches is disabled for editTree- Overrides:
- getCanSaveSearchesin class- ListGrid
- Returns:
- Current canSaveSearches value. Default value is false
 
- 
setCanShowFilterEditorOption to show filter editor is disabled for editTreeNote : This is an advanced setting - Overrides:
- setCanShowFilterEditorin class- ListGrid
- Parameters:
- canShowFilterEditor- New canShowFilterEditor value. Default value is false
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
- See Also:
 
- 
getCanShowFilterEditorpublic boolean getCanShowFilterEditor()Option to show filter editor is disabled for editTree- Overrides:
- getCanShowFilterEditorin class- ListGrid
- Returns:
- Current canShowFilterEditor value. Default value is false
- See Also:
 
- 
setDefaultPalettePaletteto use when anEditNodeis being created directly by this EditContext, instead of being created due to a user interaction with a palette (eg dragging from aTreePalette, or clicking onMenuPalette).If no defaultPalette is provided, the EditContext uses an automatically created HiddenPalette.
 If this method is called after the component has been drawn/initialized:Paletteto use when anEditNodeis being created directly by this EditContext, instead of being created due to a user interaction with a palette (eg dragging from aTreePalette, or clicking onMenuPalette).If no defaultPalette is provided, the EditContext uses an automatically created HiddenPalette.- Parameters:
- defaultPalette- the default Palette. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getDefaultPalettePaletteto use when anEditNodeis being created directly by this EditContext, instead of being created due to a user interaction with a palette (eg dragging from aTreePalette, or clicking onMenuPalette).If no defaultPalette is provided, the EditContext uses an automatically created HiddenPalette.- Returns:
- Paletteto use when an- EditNodeis being created directly by this EditContext, instead of being created due to a user interaction with a palette (eg dragging from a- TreePalette, or clicking on- MenuPalette).- If no defaultPalette is provided, the EditContext uses an automatically created - HiddenPalette. Default value is null
 
- 
setEditContextTheEditContextmanaged by this EditTree. If not set an instance will be automatically created.- Parameters:
- editContext- New editContext value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getEditContextTheEditContextmanaged by this EditTree. If not set an instance will be automatically created.- Returns:
- Returns the EditContextinstance managed by the EditTree. Default value is null
 
- 
setExtraPalettesAdditionalPalettesto consult for metadata when deserializingEdit Nodes. Note that thedefaultPaletteis always consulted and need not be provided again here.- Parameters:
- extraPalettes- New extraPalettes value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getExtraPalettesAdditionalPalettesto consult for metadata when deserializingEdit Nodes. Note that thedefaultPaletteis always consulted and need not be provided again here.- Returns:
- Current extraPalettes value. Default value is null
 
- 
setHideGroupBorderOnDragpublic EditTree setHideGroupBorderOnDrag(Boolean hideGroupBorderOnDrag) throws IllegalStateException Should the group selection box shown whencanGroupSelectis true be hidden during drag?Treated as trueif not explicitly set to false.- Parameters:
- hideGroupBorderOnDrag- New hideGroupBorderOnDrag value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getHideGroupBorderOnDragShould the group selection box shown whencanGroupSelectis true be hidden during drag?Treated as trueif not explicitly set to false.- Returns:
- Current hideGroupBorderOnDrag value. Default value is null
 
- 
setPersistCoordinatesWhen enabled, changes to aliveObject's position and size will be persisted to theirEditNodesby default. This applies to both programmatic calls and user interaction (drag reposition or drag resize).This feature can be disabled by either setting this property or EditProxy.persistCoordinatestofalse. This property affects all nodes within the EditContext whereas the latter property affects children of a single node.In some use-cases, like Reify, coordinates should not be persisted except when a component explicitly enables this feature. By setting this property to nullno component will persist coordinates of children unlessEditProxy.persistCoordinatesis explicitly set totrue.- Parameters:
- persistCoordinates- New persistCoordinates value. Default value is true
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getPersistCoordinatesWhen enabled, changes to aliveObject's position and size will be persisted to theirEditNodesby default. This applies to both programmatic calls and user interaction (drag reposition or drag resize).This feature can be disabled by either setting this property or EditProxy.persistCoordinatestofalse. This property affects all nodes within the EditContext whereas the latter property affects children of a single node.In some use-cases, like Reify, coordinates should not be persisted except when a component explicitly enables this feature. By setting this property to nullno component will persist coordinates of children unlessEditProxy.persistCoordinatesis explicitly set totrue.- Returns:
- Current persistCoordinates value. Default value is true
 
- 
setRootComponentRoot of data to edit. Must contain the "type" property, with the name of a validschemaor nothing will be able to be dropped on this EditContext. A "liveObject" property representing the rootComponent is also suggested. Otherwise, a live object will be created from the palette node.Can be retrieved at any time. Use getRootEditNode()to retrieve theEditNodecreated from the rootComponent.- Parameters:
- rootComponent- New rootComponent value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
- See Also:
 
- 
getRootComponentRoot of data to edit. Must contain the "type" property, with the name of a validschemaor nothing will be able to be dropped on this EditContext. A "liveObject" property representing the rootComponent is also suggested. Otherwise, a live object will be created from the palette node.Can be retrieved at any time. Use getRootEditNode()to retrieve theEditNodecreated from the rootComponent.- Returns:
- Current rootComponent value. Default value is null
- See Also:
 
- 
setSelectedBorderSet the CSS border to be applied to the selection outline of the selected components. This property is used whenEditProxy.selectedAppearanceisoutlineMaskoroutlineEdges.This value is applied as a default to EditProxy.selectedBorder.- Parameters:
- selectedBorder- New selectedBorder value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getSelectedBorderSet the CSS border to be applied to the selection outline of the selected components. This property is used whenEditProxy.selectedAppearanceisoutlineMaskoroutlineEdges.This value is applied as a default to EditProxy.selectedBorder.- Returns:
- Current selectedBorder value. Default value is null
 
- 
setSelectedLabelBackgroundColorpublic EditTree setSelectedLabelBackgroundColor(String selectedLabelBackgroundColor) throws IllegalStateException The background color for the selection outline label. The default is defined onSelectionOutline.This value is applied as a default to EditProxy.selectedLabelBackgroundColor.NOTE: A selected component label is only supported when EditProxy.selectedAppearanceis "outlineEdges".- Parameters:
- selectedLabelBackgroundColor- New selectedLabelBackgroundColor value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
- See Also:
 
- 
getSelectedLabelBackgroundColorThe background color for the selection outline label. The default is defined onSelectionOutline.This value is applied as a default to EditProxy.selectedLabelBackgroundColor.NOTE: A selected component label is only supported when EditProxy.selectedAppearanceis "outlineEdges".- Returns:
- Current selectedLabelBackgroundColor value. Default value is null
- See Also:
 
- 
setShowSelectedLabelShould the selection outline show a label for selected components? A component may also be highlighted with the selection outline and label to indicate the target of a drop. To suppress showing a label at any time set this property tofalse.To suppress labels during selection but still show them when targeted for a drop, see EditContext.showSelectedLabelOnSelect.NOTE: A selected component label is only supported when EditProxy.selectedAppearanceis "outlineEdges".- Parameters:
- showSelectedLabel- New showSelectedLabel value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getShowSelectedLabelShould the selection outline show a label for selected components? A component may also be highlighted with the selection outline and label to indicate the target of a drop. To suppress showing a label at any time set this property tofalse.To suppress labels during selection but still show them when targeted for a drop, see EditContext.showSelectedLabelOnSelect.NOTE: A selected component label is only supported when EditProxy.selectedAppearanceis "outlineEdges".- Returns:
- Current showSelectedLabel value. Default value is null
 
- 
setUseCopyPasteShortcutspublic EditTree setUseCopyPasteShortcuts(Boolean useCopyPasteShortcuts) throws IllegalStateException If set, auto-enablesEditProxy.useCopyPasteShortcutson theEditProxyfor theroot editNode. This works whether there is currently a root editNode or one is added later.- Overrides:
- setUseCopyPasteShortcutsin class- ListGrid
- Parameters:
- useCopyPasteShortcuts- New useCopyPasteShortcuts value. Default value is null
- Returns:
- EditTreeinstance, for chaining setter calls
- Throws:
- IllegalStateException- this property cannot be changed after the component has been created
 
- 
getUseCopyPasteShortcutsIf set, auto-enablesEditProxy.useCopyPasteShortcutson theEditProxyfor theroot editNode. This works whether there is currently a root editNode or one is added later.- Overrides:
- getUseCopyPasteShortcutsin class- ListGrid
- Returns:
- Current useCopyPasteShortcuts value. Default value is null
 
- 
addFromPaletteNodeCreates a new EditNode from a PaletteNode, using thedefaultPalette. If you have an array of possibly inter-related PaletteNodes, then you should useaddFromPaletteNodes()on the array instead, in order to preserve the relationships.- Parameters:
- paletteNode- the palette node to use to create the new node
- Returns:
- the EditNode created from the paletteNode
- See Also:
 
- 
addFromPaletteNodeCreates a new EditNode from a PaletteNode, using thedefaultPalette. If you have an array of possibly inter-related PaletteNodes, then you should useaddFromPaletteNodes()on the array instead, in order to preserve the relationships.- Parameters:
- paletteNode- the palette node to use to create the new node
- parentNode- optional the parent node if the new node should appear under a specific parent
- Returns:
- the EditNode created from the paletteNode
- See Also:
 
- 
addFromPaletteNodesAdd the suppliedPaletteNodesto the parentNode, preserving internal references from one supplied PaletteNode to another. This method should be used with an array of possibly inter-related PaletteNodes (for instance, those produced as a result of serialization viaserializeAllEditNodes()) rather than callingaddFromPaletteNode()on each individual PaletteNode.- Parameters:
- paletteNodes- array of PaletteNodes
- Returns:
- an array of the EditNodes added to the parentNode
- See Also:
 
- 
addFromPaletteNodesAdd the suppliedPaletteNodesto the parentNode, preserving internal references from one supplied PaletteNode to another. This method should be used with an array of possibly inter-related PaletteNodes (for instance, those produced as a result of serialization viaserializeAllEditNodes()) rather than callingaddFromPaletteNode()on each individual PaletteNode.- Parameters:
- paletteNodes- array of PaletteNodes
- parentNode- parent to add to (defaults to the root)
- Returns:
- an array of the EditNodes added to the parentNode
- See Also:
 
- 
addNodeAdd a newEditNodeto the EditContext, under the specified parent. If the parentNode is not provided it will be determined fromEditContext.defaultParent.The EditContext will interrogate the parent and new nodes to determine what field within the parent allows a child of this type, and to find a method to add the newNode's liveObject to the parentNode's liveObject. The new relationship will then be stored in the tree of EditNodes. For example, when a Tab is dropped on a TabSet, the field TabSet.tabs is discovered as the correct target field via naming conventions, and the method TabSet.addTab() is likewise discovered as the correct method to add a Tab to a TabSet. - Parameters:
- newNode- new node to be added
- Returns:
- newNodenode added
 
- 
addNode
- 
addNode
- 
addNode
- 
addNode
- 
addNodepublic EditNode addNode(EditNode newNode, EditNode parentNode, Integer index, String parentProperty, Boolean skipParentComponentAdd, Boolean forceSingularFieldReplace) Add a newEditNodeto the EditContext, under the specified parent. If the parentNode is not provided it will be determined fromEditContext.defaultParent.The EditContext will interrogate the parent and new nodes to determine what field within the parent allows a child of this type, and to find a method to add the newNode's liveObject to the parentNode's liveObject. The new relationship will then be stored in the tree of EditNodes. For example, when a Tab is dropped on a TabSet, the field TabSet.tabs is discovered as the correct target field via naming conventions, and the method TabSet.addTab() is likewise discovered as the correct method to add a Tab to a TabSet. - Parameters:
- newNode- new node to be added
- parentNode- parent to add the new node under.
- index- index within the parent's children array
- parentProperty- the property of the liveParent to which the new node should be added, if not auto-discoverable from the schema
- skipParentComponentAdd- whether to skip adding the liveObject to the liveParent (default false)
- forceSingularFieldReplace- whether to replace existing single field node if newNode liveObject is the same (default false)
- Returns:
- newNodenode added
 
- 
addPaletteNodesFromJSAddPaletteNodesfrom a JavaScript source representation.By default, components that have global IDswill not actually be allowed to take those global IDs - instead, only widgets that have one of the global IDs passed as theglobalsparameter will actually receive their global IDs. To override this behavior, pass the special valueALL_GLOBALSfor theglobalsparameter.- Parameters:
- jsCode- JavaScript code to eval.
 
- 
addPaletteNodesFromJS- See Also:
 
- 
addPaletteNodesFromJSAddPaletteNodesfrom a JavaScript source representation.By default, components that have global IDswill not actually be allowed to take those global IDs - instead, only widgets that have one of the global IDs passed as theglobalsparameter will actually receive their global IDs. To override this behavior, pass the special valueALL_GLOBALSfor theglobalsparameter.- Parameters:
- jsCode- JavaScript code to eval.
- parentNode- parent node (defaults to the root)
- globals- widgets to allow to take their global IDs
 
- 
addPaletteNodesFromJSONRecreateEditNodesfrom a JSON representation ofPaletteNodes(possibly created by callingserializeAllEditNodesAsJSON()orserializeEditNodesAsJSON().By default, components that have global IDswill not actually be allowed to take those global IDs - instead, only widgets that have one of the global IDs passed as theglobalsparameter will actually receive their global IDs. To override this behavior, pass the special valueALL_GLOBALSfor theglobalsparameter.- Parameters:
- jsonString- JSON string representing an array of PaletteNodes
- See Also:
 
- 
addPaletteNodesFromJSON
- 
addPaletteNodesFromJSON
- 
addPaletteNodesFromJSONpublic void addPaletteNodesFromJSON(String jsonString, EditNode parentNode, String[] globals, Function callback) RecreateEditNodesfrom a JSON representation ofPaletteNodes(possibly created by callingserializeAllEditNodesAsJSON()orserializeEditNodesAsJSON().By default, components that have global IDswill not actually be allowed to take those global IDs - instead, only widgets that have one of the global IDs passed as theglobalsparameter will actually receive their global IDs. To override this behavior, pass the special valueALL_GLOBALSfor theglobalsparameter.- Parameters:
- jsonString- JSON string representing an array of PaletteNodes
- parentNode- parent to add to (defaults to the root)
- globals- widgets to allow to take their global IDs
- callback- Callback to fire after nodes have been added
- See Also:
 
- 
addPaletteNodesFromXMLRecreateEditNodesfrom an XML representation ofPaletteNodes(possibly created by callingserializeAllEditNodes()orserializeEditNodes().By default, components that have global IDswill not actually be allowed to take those global IDs - instead, only widgets that have one of the global IDs passed as theglobalsparameter will actually receive their global IDs. To override this behavior, pass the special valueALL_GLOBALSfor theglobalsparameter.- Parameters:
- xmlString- XML string
- See Also:
 
- 
addPaletteNodesFromXML- See Also:
 
- 
addPaletteNodesFromXML- See Also:
 
- 
addPaletteNodesFromXMLpublic void addPaletteNodesFromXML(String xmlString, EditNode parentNode, String[] globals, Function callback) RecreateEditNodesfrom an XML representation ofPaletteNodes(possibly created by callingserializeAllEditNodes()orserializeEditNodes().By default, components that have global IDswill not actually be allowed to take those global IDs - instead, only widgets that have one of the global IDs passed as theglobalsparameter will actually receive their global IDs. To override this behavior, pass the special valueALL_GLOBALSfor theglobalsparameter.- Parameters:
- xmlString- XML string
- parentNode- parent node (defaults to the root)
- globals- widgets to allow to take their global IDs
- callback- Callback to fire after nodes have been added
- See Also:
 
- 
copyEditNodesCopies the passed editNode or editNodes to an internal "clipboard" space, for later application viapasteEditNodes().- Parameters:
- editNode-
 
- 
copyEditNodesCopies the passed editNode or editNodes to an internal "clipboard" space, for later application viapasteEditNodes().- Parameters:
- editNode-
 
- 
destroyAllpublic void destroyAll()
- 
enableEditingEnable edit mode for anEditNode. This is a shortcut for callingCanvas.setEditMode().- Parameters:
- editNode- the EditNode on which to enable editing
- See Also:
 
- 
getEditNodeTreeGets the tree of editNodes being edited by this editContext. Standard tree traversal methods can then be used to locate desired editNodes for interaction.Note: the returned tree is read-only and must only be modified by calling methods on EditContext like EditContext.addNode()orEditContext.setNodeProperties().- Returns:
- the tree of EditNodes
 
- 
getNodePropertyReturns the specified property from the editNode's serializable "defaults".- Parameters:
- editNode- the editNode to query
- name- the property name to query
- See Also:
 
- 
getPaletteNodesFromJSObtainPaletteNodesfrom a JavaScript source representation.By default, components that have global IDswill not actually be allowed to take those global IDs - instead, only widgets that have one of the global IDs passed as theglobalsparameter will actually receive their global IDs. To override this behavior, pass the special valueALL_GLOBALSfor theglobalsparameter.- Parameters:
- jsCode- JavaScript code to eval.
- callback- Callback used to return the PaletteNodes
 
- 
getPaletteNodesFromJSObtainPaletteNodesfrom a JavaScript source representation.By default, components that have global IDswill not actually be allowed to take those global IDs - instead, only widgets that have one of the global IDs passed as theglobalsparameter will actually receive their global IDs. To override this behavior, pass the special valueALL_GLOBALSfor theglobalsparameter.- Parameters:
- jsCode- JavaScript code to eval.
- callback- Callback used to return the PaletteNodes
- globals- widgets to allow to take their global IDs
 
- 
getPaletteNodesFromXMLObtainPaletteNodesfrom an XML representation, but do not add them to the EditContext.- Parameters:
- xmlString- XML string
- callback- Callback used to return the PaletteNodes
- See Also:
 
- 
getRootEditNodeReturns the rootEditNodeof the EditContext typically created fromrootComponent.- Returns:
- the root EditNode
 
- 
isNodeEditingOnReturns true ifeditNodeis in edit mode.- Parameters:
- editNode- the EditNode
- Returns:
- true if node is in edit mode
 
- 
makeEditNodeCreates and returns an EditNode using thedefaultPalette. Does not add the newly created EditNode to an EditContext.- Parameters:
- paletteNode- the palette node to use to create the new node
- Returns:
- the EditNode created from the paletteNode
 
- 
makePaletteNodeCreates aPaletteNodefrom anEditNodein this context'seditNodeTree.This essentially creates a new PaletteNodewith theEditNode.defaultsfrom the passededitNode. The returnedpaletteNodecould then be used withEditContext.addFromPaletteNode()to effectively create a copy of the original editNode - specifically a new editNode with a newEditNode.liveObjectcreated from the same defaults.However note that makePaletteNode()does not copy descendant nodes - usemakePaletteNodeTree()for that.May return null if the passed editNode cannot validly by transformed into a paletteNode, for example if EditNode.canDuplicatewas set false.- Parameters:
- editNode- the editNode to use to make a paletteNode
- Returns:
- paletteNode derived from the editNode or null
 
- 
makePaletteNodeTreeCreates aTreeofPaletteNodesfrom anEditNodein this context'seditNodeTree, by usingmakePaletteNode()on the passedEditNodeand its descendents within theeditNodeTree.The root node of the returned Treewill be a PaletteNode derived from the passedEditNode.- Parameters:
- editNode- root editNode to make Tree of PaletteNodes from
- removeAutoIDs- should ID and autoID defaults be removed?
- Returns:
- a Tree of paletteNodes or null
 
- 
pasteEditNodespublic void pasteEditNodes()"Pastes"editNodespreviously captured viacopyEditNodes().New editNodes will be added as root-level nodes of the editNodeTreeunless atargetEditNodeis passed.
- 
pasteEditNodes"Pastes"editNodespreviously captured viacopyEditNodes().New editNodes will be added as root-level nodes of the editNodeTreeunless atargetEditNodeis passed.- Parameters:
- targetEditNode-
 
- 
removeAllpublic void removeAll()Removes allEditNodesfrom the EditContext, but does not destroy theliveObjects.
- 
removeNodeRemovesEditNodefrom the EditContext. The editNode liveObject is not destroyed.- Parameters:
- editNode- node to be removed
 
- 
removeNodePropertiesRemoves the specified properties from an editNode's serializable "defaults". Note that theliveObjectis not updated by this method. To set a property to null (rather than removing it), usesetNodeProperties()instead.- Parameters:
- editNode- the editNode to update
- properties- an array of property names to remove
- See Also:
 
- 
reorderNodeMoves anEditNodefrom one child index to another in the EditContext under the specified parent.No changes are made to the live objects. - Parameters:
- parentNode- parent to reorder child nodes
- index- index within the parent's children array to be moved
- moveToIndex- index within the parent's children array at which to place moved node
 
- 
serializeAllEditNodesSerialize the tree ofEditNodesto an XML representation ofPaletteNodes. The result can be supplied toaddPaletteNodesFromXML()to recreate the EditNodes.- Returns:
- an XML representation of PaletteNodes which can be used to recreate the tree of EditNodes.
- See Also:
 
- 
serializeAllEditNodesSerialize the tree ofEditNodesto an XML representation ofPaletteNodes. The result can be supplied toaddPaletteNodesFromXML()to recreate the EditNodes.- Parameters:
- settings- Additional serialization settings
- Returns:
- an XML representation of PaletteNodes which can be used to recreate the tree of EditNodes.
- See Also:
 
- 
serializeAllEditNodesAsJSONEncode the tree ofEditNodesto a JSON representation ofPaletteNodes. The result can be supplied toaddPaletteNodesFromJSON()to recreate the EditNodes.- Returns:
- a JSON representation of PaletteNodes which can be used to recreate the tree of EditNodes.
- See Also:
 
- 
serializeAllEditNodesAsJSONEncode the tree ofEditNodesto a JSON representation ofPaletteNodes. The result can be supplied toaddPaletteNodesFromJSON()to recreate the EditNodes.- Parameters:
- settings- Additional serialization settings
- Returns:
- a JSON representation of PaletteNodes which can be used to recreate the tree of EditNodes.
- See Also:
 
- 
serializeEditNodesSerialize the providedEditNodesto an XML representation ofPaletteNodes. Note that the EditNodes must have been added to this EditContext. The result can be supplied toaddPaletteNodesFromXML()to recreate the EditNodes.- Parameters:
- nodes- EditNodes to be serialized
- Returns:
- an XML representtion of the provided EditNodes
 
- 
serializeEditNodesSerialize the providedEditNodesto an XML representation ofPaletteNodes. Note that the EditNodes must have been added to this EditContext. The result can be supplied toaddPaletteNodesFromXML()to recreate the EditNodes.- Parameters:
- nodes- EditNodes to be serialized
- settings- Additional serialization settings
- Returns:
- an XML representtion of the provided EditNodes
 
- 
serializeEditNodesAsJSONSerialize the providedEditNodesto a JSON representation ofPaletteNodes. Note that the EditNodes must have been added to this EditContext. The result can be supplied toaddPaletteNodesFromJSON()to recreate the EditNodes.- Parameters:
- nodes- EditNodes to be serialized
- Returns:
- a JSON representtion of the provided EditNodes
 
- 
serializeEditNodesAsJSONSerialize the providedEditNodesto a JSON representation ofPaletteNodes. Note that the EditNodes must have been added to this EditContext. The result can be supplied toaddPaletteNodesFromJSON()to recreate the EditNodes.- Parameters:
- nodes- EditNodes to be serialized
- settings- Additional serialization settings
- Returns:
- a JSON representtion of the provided EditNodes
 
- 
setNodePropertiesUpdate an editNode's serializable "defaults" with the supplied properties. If you wish to remove a property from the defaults (rather than setting it to null), then useremoveNodeProperties()instead.- Parameters:
- editNode- the editNode to update
- properties- the properties to apply
- See Also:
 
- 
setNodePropertiesUpdate an editNode's serializable "defaults" with the supplied properties. If you wish to remove a property from the defaults (rather than setting it to null), then useremoveNodeProperties()instead.- Parameters:
- editNode- the editNode to update
- properties- the properties to apply
- skipLiveObjectUpdate- whether to skip updating the- liveObject, e.g. if you have already updated the liveObject
- See Also:
 
- 
setDefaultPropertiesClass level method to set the default properties of this class. If set, then all existing and subsequently created instances of this class will automatically have default properties corresponding to the properties set on the SmartGWT class instance passed to this function before its underlying SmartClient JS object was created. This is a powerful feature that eliminates the need for users to create a separate hierarchy of subclasses that only alter the default properties of this class. Can also be used for skinning / styling purposes.Note: This method is intended for setting default attributes only and will affect all instances of the underlying class (including those automatically generated in JavaScript). This method should not be used to apply standard EventHandlers or override methods for a class - use a custom subclass instead. Calling this method after instances have been created can result in undefined behavior, since it bypasses any setters and a class instance may have already examined a particular property and not be expecting any changes through this route. - Parameters:
- editTreeProperties- properties that should be used as new defaults when instances of this class are created
- See Also:
 
- 
setLogicalStructureSetter implementing theLogicalStructureinterface, which supports Eclipse's logical structure debugging facility.
- 
getLogicalStructureGetter implementing theLogicalStructureinterface, which supports Eclipse's logical structure debugging facility.- Specified by:
- getLogicalStructurein interface- LogicalStructure
- Overrides:
- getLogicalStructurein class- TreeGrid
 
 
-