%CSP.UI.Portal.Resources
class %CSP.UI.Portal.Resources extends %CSP.UI.Template.List
System Management Portal - System Administration - ResourcesProperty Inventory (Including Private)
- FILETYPE
- PermissionNo
- PermissionRead
- PermissionUse
- PermissionWrite
- Spec
- colDelete
- msgConfirm
- msgDBDefault
- msgDeleteMsgs
Method Inventory (Including Private)
- %GetLocatorLinks()
- %OnAfterCreatePage()
- %OnGetPageName()
- Delete()
- DrawTableHeader()
- ExecuteRS()
- GetLastSearch()
- OnGetRibbonInfo()
- doDelete()
- doEdit()
- doExport()
- doImport()
- doProfile()
- doSearch()
- keyUp()
- onPopupAction()
- onloadHandler()
- reloadTable()
Parameters
parameter AUTONS = 0;
Do not switch namespace for this page: it needs to stay in %SYS
parameter CSPURL = /csp/sys/sec/%CSP.UI.Portal.Resources.zen;
Inherited description: This parameter is used to make sure that if multiple
CSP applications are mapped to the same namespace that the CSP engine can correctly
identify which class corresponds with which URL. If 'LockCSPName' is true (the default, defined
in the CSP application) then you can only access this page if the url exactly matches
this 'CSPURL'. You can set this parameter to "" if you wish to disable this check for
this class. This check is applied for all CSP urls (cls/csp/zen).
If this page was compiled from a .csp file, then this parameter is automatically set to contain the url of this file used for compilation.
If this page was compiled from a .csp file, then this parameter is automatically set to contain the url of this file used for compilation.
parameter EMSSERVICE = Security;
parameter HELPADDRESS = System Administration,Security,Resources;
Inherited description: Each SMP page should set this link which points to the documentation anchor name.
parameter PAGENAME = Managing Resources;
Displayed name of this page.
parameter RESOURCE = %Admin_Secure;
Security requirement
Properties (Including Private)
property FILETYPE as %String [ InitialExpression = "Resource" ];
Property methods: FILETYPEDisplayToLogical(), FILETYPEGet(), FILETYPEIsValid(), FILETYPELogicalToDisplay(), FILETYPELogicalToOdbc(), FILETYPENormalize(), FILETYPESet()
property PermissionNo as %ZEN.Datatype.boolean [ InitialExpression = 1 ];
No public permission on the Search pane. Default to checked.
Property methods: PermissionNoDisplayToLogical(), PermissionNoGet(), PermissionNoIsValid(), PermissionNoLogicalToDisplay(), PermissionNoLogicalToOdbc(), PermissionNoLogicalToXSD(), PermissionNoNormalize(), PermissionNoSet(), PermissionNoXSDToLogical()
property PermissionRead as %ZEN.Datatype.boolean [ InitialExpression = 1 ];
Read public permission on the Search pane. Default to checked.
Property methods: PermissionReadDisplayToLogical(), PermissionReadGet(), PermissionReadIsValid(), PermissionReadLogicalToDisplay(), PermissionReadLogicalToOdbc(), PermissionReadLogicalToXSD(), PermissionReadNormalize(), PermissionReadSet(), PermissionReadXSDToLogical()
property PermissionUse as %ZEN.Datatype.boolean [ InitialExpression = 1 ];
Use public permission on the Search pane. Default to checked.
Property methods: PermissionUseDisplayToLogical(), PermissionUseGet(), PermissionUseIsValid(), PermissionUseLogicalToDisplay(), PermissionUseLogicalToOdbc(), PermissionUseLogicalToXSD(), PermissionUseNormalize(), PermissionUseSet(), PermissionUseXSDToLogical()
property PermissionWrite as %ZEN.Datatype.boolean [ InitialExpression = 1 ];
Write public permission on the Search pane. Default to checked.
Property methods: PermissionWriteDisplayToLogical(), PermissionWriteGet(), PermissionWriteIsValid(), PermissionWriteLogicalToDisplay(), PermissionWriteLogicalToOdbc(), PermissionWriteLogicalToXSD(), PermissionWriteNormalize(), PermissionWriteSet(), PermissionWriteXSDToLogical()
property Spec as %ZEN.Datatype.string [ InitialExpression = "*" ];
Resource Name Spec on the Search pane. User can enter any of the following:
- Names - Comma separated list of resource names
- "*" - All records match
- "String,String1" - Any records matching one of these elements
- "String*" - Any record starting with "String"
- "String,String1*,String2" - Any record matching one of these elements, or starting with "String1"
Property methods: SpecDisplayToLogical(), SpecGet(), SpecIsValid(), SpecLogicalToDisplay(), SpecLogicalToOdbc(), SpecNormalize(), SpecSet()
property colDelete as %ZEN.Datatype.caption [ InitialExpression = $$$Text("Delete") ];
Store translated targetCol linkCaption for
Property methods: colDeleteDisplayToLogical(), colDeleteGet(), colDeleteIsValid(), colDeleteLogicalToDisplay(), colDeleteLogicalToOdbc(), colDeleteNormalize(), colDeleteSet()
property msgConfirm as %String [ InitialExpression = $$$TextJS("Are you sure you want to delete resource code %1?") ];
Property methods: msgConfirmDisplayToLogical(), msgConfirmGet(), msgConfirmIsValid(), msgConfirmLogicalToDisplay(), msgConfirmLogicalToOdbc(), msgConfirmNormalize(), msgConfirmSet()
property msgDBDefault as %ZEN.Datatype.caption [ InitialExpression = $$$TextJS("(%DB_%DEFAULT cannot be deleted.)") ];
Property methods: msgDBDefaultDisplayToLogical(), msgDBDefaultGet(), msgDBDefaultIsValid(), msgDBDefaultLogicalToDisplay(), msgDBDefaultLogicalToOdbc(), msgDBDefaultNormalize(), msgDBDefaultSet()
property msgDeleteMsgs as %ZEN.Datatype.caption [ InitialExpression = $$$TextJS("Are you sure you want to delete the selected %1 resource(s)?") ];
Property methods: msgDeleteMsgsDisplayToLogical(), msgDeleteMsgsGet(), msgDeleteMsgsIsValid(), msgDeleteMsgsLogicalToDisplay(), msgDeleteMsgsLogicalToOdbc(), msgDeleteMsgsNormalize(), msgDeleteMsgsSet()
Methods (Including Private)
method %GetLocatorLinks(Output pLink) as %Status [ Language = objectscript ]
Return the array of links to show in the locator bar.
pLink(n)=$LB(caption,link)
pLink(n)=$LB(caption,link)
method %OnAfterCreatePage() as %Status [ Language = objectscript ]
Inherited description: Subclass to override. Always include code in this method.
method %OnGetPageName() as %String [ Language = objectscript ]
Get the (localized) name of the page.
This should be implemented in a subclass.
Delete selected resource/s now.
Draw the contents of the Table Header (the region between the diagram and the table).
method ExecuteRS(pRS As %Library.ResultSet, Output tSC As %Status, pInfo As %ZEN.Auxiliary.QueryInfo) as %Boolean [ Language = objectscript ]
Method for executing the query.
method GetLastSearch() as %String [ Language = objectscript ]
method OnGetRibbonInfo(Output pDisplay As %Boolean, Output pViewIcons As %List, Output pSortOptions As %List, Output pSearchBox As %Boolean, Output pRibbonTitle As %String, Output pCommands As %List) as %Status [ Language = objectscript ]
Get information to display in the ribbon bar.
clientmethod doDelete(resource) [ Language = javascript ]
Delete selected resource(s).
clientmethod doEdit(resource) [ Language = javascript ]
clientmethod doExport() [ Language = javascript ]
clientmethod doImport() [ Language = javascript ]
clientmethod doProfile() [ Language = javascript ]
clientmethod doSearch() [ Language = javascript ]
User clicked Go to start search.
clientmethod keyUp(zenEvent) [ Language = javascript ]
Check if user hit [Enter].
clientmethod onPopupAction(popupName, action, value) [ Language = javascript ]
This client event, if present, is fired when the a popup page
launched from this page fires an action.
clientmethod onloadHandler() [ Language = javascript ]
When page is loaded, check if this is a ReadOnly for EMS. If it is then disable the multiple select.
Else disable the checkbox for %DB_%DEFAULT.
Else disable the checkbox for %DB_%DEFAULT.
clientmethod reloadTable() [ Language = javascript ]
Inherited Members
Inherited Properties (Including Private)
- %condition
- %import
- %includeFiles
- %page
- %resource
- BeginDate
- ClassURL
- CurrentColumn
- CurrentSort
- DocPage
- EndDate
- Filter
- FirstFailed
- GlobalURL
- HelpAddress
- ISREADONLY
- InvalidParam
- IsEMSReadOnly
- IsEditForm
- LocatorHeader
- MaxRows
- NamespaceList
- OnclickArray
- PID
- ParentURL
- RoutineURL
- ShowGen
- ShowMap
- ShowSys
- StdTitle
- TableMaxRows
- TablePageSize
- ValidationErrorMsg
- aboutPage
- align
- aux
- backgroundTimerInterval
- captionLastUpdate
- cellAlign
- cellSize
- cellStyle
- cellVAlign
- children
- composite
- contactPage
- containerStyle
- cssLevel
- currSortMode
- currStep
- currViewMode
- disabled
- dragAndDrop
- dragEnabled
- dropEnabled
- enableAutoRefresh
- enclosingClass
- enclosingStyle
- error
- groupClass
- groupStyle
- height
- hidden
- hint
- hintClass
- hintStyle
- home
- homePage
- id
- index
- label
- labelClass
- labelDisabledClass
- labelPosition
- labelStyle
- layout
- lblTitle
- limitPopups
- name
- onafterdrag
- onbeforedrag
- onclick
- ondrag
- ondrop
- onhide
- onrefresh
- onshow
- onupdate
- pageModified
- parent
- searchKey
- showLabel
- slice
- title
- tuple
- useSVG
- useSoftModals
- valign
- visible
- width
- window
- zenPersistentPopup
Inherited Methods (Including Private)
- %AddChild()
- %AddChildAfter()
- %AddChildBefore()
- %AddComponent()
- %AddImportedComponents()
- %AddLocatorLinks()
- %AddToSaveSet()
- %ApplyURLParms()
- %Attr()
- %BindExport()
- %ChangeNS()
- %ClassIsLatestVersion()
- %ClassName()
- %ConstructClone()
- %ConstructCloneInit()
- %DispatchClassMethod()
- %DispatchGetModified()
- %DispatchGetProperty()
- %DispatchMethod()
- %DispatchSetModified()
- %DispatchSetMultidimProperty()
- %DispatchSetProperty()
- %DrawAutoLogout()
- %DrawClassDefinitions()
- %DrawComponentHTML()
- %DrawFrameSet()
- %DrawHTML()
- %DrawHTMLPage()
- %DrawJSResources()
- %DrawJSStrings()
- %DrawObjectDefinitions()
- %EnclosingDivId()
- %EndBackgroundMethod()
- %EndScript()
- %Eval()
- %EvalC()
- %Extends()
- %ForceClientRender()
- %GetChildIndex()
- %GetComponent()
- %GetComponentById()
- %GetComponentByName()
- %GetEventHandlers()
- %GetHomePage()
- %GetHomeParam()
- %GetJSResources()
- %GetLinks()
- %GetNavTableState()
- %GetPageName()
- %GetParameter()
- %GetProductName()
- %GetValueById()
- %GetValueByName()
- %GetXMLName()
- %IsA()
- %IsModified()
- %LayoutChildren()
- %Link()
- %LinkCSS()
- %LinkScript()
- %MakeId()
- %New()
- %NormalizeObject()
- %ObjectModified()
- %OnAddToPageAfter()
- %OnAddToPageBefore()
- %OnAddToSaveSet()
- %OnBeforeCreatePage()
- %OnClose()
- %OnConstructClone()
- %OnCreateApplication()
- %OnCreatePage()
- %OnDetermineCSSLevel()
- %OnDrawEnclosingDiv()
- %OnDrawHTMLBody()
- %OnDrawHTMLHead()
- %OnDrawHTMLMeta()
- %OnDrawObjectProperties()
- %OnFinishBackgroundTask()
- %OnGetJSResources()
- %OnGetProductName()
- %OnGetSmallMenu()
- %OnGetTitle()
- %OnMonitorBackgroundTask()
- %OnMutateChildren()
- %OnNew()
- %OnObjectSynch()
- %OnPreHTTP()
- %OnSubmit()
- %OnUseSoftModals()
- %OnValidateObject()
- %OnZENDeserialize()
- %OriginalNamespace()
- %PackageName()
- %QuoteValue()
- %QuoteValueL10N()
- %Register()
- %RemoveChild()
- %RemoveChildren()
- %RemoveComponent()
- %RemoveFromSaveSet()
- %RunBackgroundMethod()
- %Self()
- %SerializeObject()
- %SetBackgroundMethodStatus()
- %SetErrorById()
- %SetErrorByName()
- %SetModified()
- %SetValueById()
- %SetValueByName()
- %SetValuesByName()
- %StartScript()
- %ValidateObject()
- %ZENVersion()
- BuildMenu()
- BuildMeter()
- CheckAllBlanks()
- CheckContextLinks()
- CheckEnterpriseManager()
- ConvertParameter()
- Decrypt()
- DoLogout()
- DrawAutoRefresh()
- DrawLocator()
- DrawRibbon()
- DrawTitle()
- Encrypt()
- EscapeHTML()
- EscapeURL()
- EvalResult()
- FindDBDir()
- FindDBName()
- GetCSPURL()
- GetContextLinks()
- GetDBList()
- GetDocURL()
- GetExpandState()
- GetHomePage()
- GetNSList()
- GetNewURL()
- GetQuickLinks()
- GetRecentList()
- HyperEventCall()
- HyperEventHead()
- Include()
- InsertHiddenField()
- InsertHiddenFields()
- IsPrivate()
- JavaInstalled()
- LastUpdateTime()
- Link()
- OnDrawRibbon()
- OnHTTPHeader()
- OnPage()
- OnPageError()
- OnPostHTTP()
- OnPostHyperEvent()
- OnPreHTTP()
- OnPreHyperEvent()
- Page()
- PrepareAction()
- QuoteJS()
- RegisterRecent()
- RewriteURL()
- SaveExpandState()
- SaveSelections()
- ShowError()
- StartTimer()
- StopTimer()
- ThrowError()
- UnescapeHTML()
- UnescapeURL()
- UpdateAutoRefreshRate()
- UpdateAutoRefreshState()
- UpdateTableNavState()
- UpdateTableState()
- XMLDTD()
- XMLExport()
- XMLExportToStream()
- XMLExportToString()
- XMLNew()
- XMLSchema()
- XMLSchemaNamespace()
- XMLSchemaType()
- addChild()
- addChildAfter()
- addChildBefore()
- adjustSizes()
- afterSave()
- afterValidate()
- cancelPopup()
- changePassword()
- checkURLNamespace()
- childrenMutated()
- columnSort()
- correctIELayering()
- createComponent()
- createComponentNS()
- deleteComponent()
- disableCommandButton()
- doCancel()
- doDoc()
- doModified()
- dragFinishHandler()
- dragHandler()
- dragNotifyHandler()
- dragStartHandler()
- dropHandler()
- dropStartHandler()
- enableCommandButton()
- endModal()
- exposeComponent()
- findElement()
- findNSMatch()
- fireOnResizeEvent()
- fireOnUnloadEvent()
- fireOnUpdateEvent()
- firePopupAction()
- getChildIndex()
- getComponent()
- getComponentById()
- getEnclosingDiv()
- getHidden()
- getHintElement()
- getLabelElement()
- getOpener()
- getPageTitle()
- getProperty()
- getSelectedNamespace()
- getSettings()
- getTime()
- getTitleAreaHeight()
- getType()
- goHome()
- goMenu()
- gotoNamespace()
- gotoPage()
- hideCommandButton()
- invokeSuper()
- isButtonDisabled()
- isOfType()
- launchPopupWindow()
- logout()
- makeId()
- navMaxRowsChanged()
- navPageSizeChanged()
- navigate()
- onCreate()
- onDelete()
- onDisplayHandler()
- onEndModalHandler()
- onRefreshContents()
- onSerialize()
- onServerMethodCall()
- onServerMethodError()
- onServerMethodReturn()
- onStartModalHandler()
- ondisabledHandler()
- onkeydownHandler()
- onkeyupHandler()
- onlayoutHandler()
- onlogoutHandler()
- onoverlayHandler()
- onresizeHandler()
- onunloadHandler()
- onupdateHandler()
- popupActionHandler()
- refreshContents()
- refreshHandler()
- refreshkeyUp()
- removeChild()
- render()
- renderContents()
- renderSVG()
- resetMsg()
- searchBlur()
- searchBoxHandler()
- searchFocus()
- searchKeyDown()
- searchKeyPress()
- setComponentId()
- setConnectivityStatusMsg()
- setHidden()
- setModified()
- setOverlayMode()
- setPageTitle()
- setProperty()
- setPropertyAll()
- setRefreshMode()
- setRefreshRate()
- setSortMode()
- setSortModeHandler()
- setTraceOption()
- setViewMode()
- setViewModeHandler()
- showAbout()
- showCommandButton()
- showContact()
- showDocumentation()
- showExpand()
- showHelp()
- showMsg()
- startModal()
- startProgressBar()
- stopProgressBar()
- switchNamespace()
- toggleDetails()
- toggleSearch()
- trimSpace()
- updateTime()
- updateView()
- validateRequired()
- zeroFill()