RocketCDS
Installation
Integration
RocketCDS
Installation
Integration
Installing AppThemes
Partial And Shared Templates
Razor Tokens
Dependancy
JQuery Validation
DNN Search
File Download
Rocket Tools
ChatGPT
DeepL
Simplisity JS
Command Attributes
Methods
Class Events
Field Data
Utility Functions
Ajax DropDownList
RocketContent
Create an AppTheme
Adding CSS and JS
Adding Resx
Multi-Row AppTheme
DataObjects
Razor Tokens
Shared Templates
Snippets
ArticleLimpet
ArticleRowLimpet
RocketDirectory
Create an AppTheme
DataObjects
Razor Tokens
Shared Templates
MenuManipulator
Category Menu
Text Search
Property Filter
Tag Filter
Secure Document
Snippets
RSS feed
Related Articles
ArticleLimpet
RocketForms
Create an AppTheme
DataObjects
Functionality
Module Settings
# Field Data Hidden fields are created by simplisity on page load, these are to keep track of data that often needs passing to the server. ##### ```simplisity_systemkey``` >This is set by the "simplisity_startup" function (see below). It keeps track of the default systemkey being used by the page. ``` $(document).ready(function () { $(document).simplisityStartUp('/My API call url', { systemkey: 'amylisbusiness'}); }); ```
##### ```simplisity_loader``` >This is a an element with a class which will be displayed when a call to the server is made. By default this is "overlayclass: 'w3-overlay'" but this call can be overwritten on the "simplisity_startup" function. If required it can be used with JQuery or JS. ``` $('.simplisity_loader').show(); ```
##### ```simplisity_fileuploadlist``` >This field keeps a list of the fields which need to be uploaded. They are then passed and processed server side. ##### ```simplisity_params``` >List of the params that need to be passed to server side (use 'simplisity_setParamField' function). These are found on the server in the "paramjson" form fields. This field will also save the "activevalue" paramater. The "activevalue" is the current element value. It can be used by server side code: ``` paramInfo.GetXmlProperty("genxml/hidden/activevalue") ```
##### ```simplisity_sessionfield``` >Input fields identified with this class will persist the value to the "paraamjson" fields and repopulate the input fields on reload. ##### ```simplisity_cmdurl``` >The current page API url endpoint. All commands that do not have a 'cmdurl' (API endpoint) specified will use this as the API endpoint. This is set by the "$(document).simplisityStartUp(string apiurl)" method, which will be on the starting page.