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
# Shared or Partial Templates To create high-performance, uncomplicated modules, there are shared templates. These are templates used for specific functionalities and stop duplication of common requirements. To use a shared template you use a INJECT token (recommended) or the @RenderTemplate() token. --- Standard input fields for a row heading. ``` [INJECT:appthemesystem,ArticleRowHeader.cshtml] ``` Displays standard fields for a row heading. ``` [INJECT:appthemesystem,ArticleRowHeaderView.cshtml] ``` Add multiple links ``` [INJECT:appthemesystem,ArticleLinks.cshtml] ``` Add a single link ``` [INJECT:appthemesystem,ArticleLink.cshtml] ``` Add multiple images ``` [INJECT:appthemesystem,ArticleImages.cshtml] ``` Add a single image ``` [INJECT:appthemesystem,ArticleImage.cshtml] ``` Add multiple images with fields to define size ``` [INJECT:appthemesystem,ArticleImagesSize.cshtml] ``` Add multiple documents ``` [INJECT:appthemesystem,ArticleDocuments.cshtml] ``` Add a single document ``` [INJECT:appthemesystem,ArticleDocument.cshtml] ``` Add a title, its size and alignment, for the headerData. ``` [INJECT:appthemesystem,ArticleHeader.cshtml] ``` Display headerData. ``` [INJECT:appthemesystem,ArticleHeaderView.cshtml] ``` Adds a CDN for CKEditor. This token is to standardize across AppThemes. ``` [INJECT:appthemesystem,CKEditor4.cshtml] ```