%DeepSee.UI.Dialog.GetDictionaryList
Class %DeepSee.UI.Dialog.GetDictionaryList Extends %DeepSee.UI.Dialog.standardDialog [ System = 4 ]
This dialog lets the user select multiples from a list of definition, primarily used to select iKnow Dictionaries.
An existing list (delimited by comma) may be passed in.
Parameters
APPLYBUTTON
Parameter APPLYBUTTON = 0;
Properties
cubeName
Property cubeName As %ZEN.Datatype.string(ZENURL = "CUBE");
Cube name.
ELEMENT
Property ELEMENT As %ZEN.Datatype.string(ZENURL = "ELEMENT");
VALUE
Property VALUE As %ZEN.Datatype.string(ZENURL = "VALUE");
WHAT
Property WHAT As %ZEN.Datatype.string(ZENURL = "WHAT");
XDatas
Style
XData Style
dialogBody
XData dialogBody [ XMLNamespace = "http://www.intersystems.com/zen" ]
Contents of the dialog body.
Methods
%OnGetTitle
Method %OnGetTitle() As %String
Get the (localized) title string for the dialog. This should be implemented in a subclass.
%OnGetSubtitle
Method %OnGetSubtitle() As %String
Get the (localized) subtitle string for the dialog. This should be implemented in a subclass.
getDialogValue
ClientMethod getDialogValue() [ Language = javascript ]
ondialogFinish
ClientMethod ondialogFinish(action) As %Boolean [ Language = javascript ]
This callback, if defined, is called when the user presses the OK or Apply action buttons. If this returns false, then the action is cancelled.
ondialogStart
ClientMethod ondialogStart() [ Language = javascript ]
This callback, if defined, is called when the dialog page is loaded.
arrowClick
ClientMethod arrowClick(from, to) [ Language = javascript ]
------------------ Utility Methods for Moving between lstboxes ------------------ /// Moving a list item from one box to the next, then remove it from the original box ///
%OnAfterCreatePage
Method %OnAfterCreatePage() As %Status