Kentico CMS 7.0 Context Help

New/Edit transformation

New/Edit transformation

Previous topic Next topic Mail us feedback on this topic!  

New/Edit transformation

Previous topic Next topic JavaScript is required for the print function Mail us feedback on this topic!  

This dialog opens either when creating a new custom table transformation or editing an existing one.

 

The following actions are available in the header:

 

Save Save - click this button to confirm the creation of a new transformation or changes made to an existing one.

CheckOut Check out - locks the transformation, so that other users cannot modify it at the same time. After you finish your edits, you can allow other users to modify the transformation again using the CheckIn Check in button or you can cancel the checkout by clicking UndoCheckoutNew Undo checkout.

WidgetClone Generate default transformation - generates a default transformation for the parent custom table. This overwrites the current transformation code.

NavigateToDocument Preview - allows you to edit the transformation side-by-side with a preview of how it appears on the live site. See the Design preview help topic for additional details about the preview mode.

 

Specify the content of the transformation through the following fields:

 

General

Transformation name

The name of the transformation. This is used together with the code name of the parent custom table when assigning the transformation to web parts or controls.

Transformation

Transformation type

You can choose from the following code syntax options, which determine how the system renders the transformation:

 

ASCX - with this option, the code of the transformation supports ASCX markup, i.e. the same syntax that you would use to edit a standard web form or user control, including inline code and embedded controls. You can access the fields of the custom table through standard data binding expressions in format: <%# Eval("ColumnName") %>
 
Please note that for security purposes, ASCX transformations may only be edited by users who have the Edit ASCX code permission for the Design module.

 

Text/XML - the system processes the code only as basic HTML. This means that any ASCX markup, such as controls or inline code, are not functional when the transformation is rendered. You may use Kentico CMS Macro expressions and methods to insert dynamic values into the content. Use expressions in the following format to get the values of the custom table's fields:
{%ColumnName%}

 

HTML - works the same way as the Text/XML option, but editing is done through the WYSIWYG editor. The rendered output of HTML code will be shown inside the editor.

 

XSLT - this option can be selected for transformations that use XSL elements to render the data. The code must be in valid XML format.

 

Code

This is the actual code of the transformation. The code is processed according to the selected Transformation type.

 

See the Methods in transformations help topic for examples of expressions that you can use in your transformations.

 

Adding CSS styles to the transformation

 

Transformations allow you to directly define any CSS classes used within the code.

 

Requirement: The Allow CSS from components setting must be enabled in Site Manager -> Settings -> System -> Performance.

 

1. Click Add CSS styles below the transformation's code. The CSS styles editor appears.

 

2. Enter the definitions of the required CSS classes.

 

3. Click Save Save.

 

All pages where this transformation is used to display data (e.g. through a viewer web part) automatically load the specified styles.

 

Additional resources

 

Developer's Guide -> Modules -> Custom tables

Developer's Guide -> Modules -> Custom tables -> Transformations for custom tables

Developer's Guide -> Development -> Team development -> Object locking

Developer's Guide -> Development -> CSS stylesheets and design -> CSS for page components