Using Custom Components

Custom components in ThemeBuilder allow you to enrich your set of UI components by adding new ones. These custom components are based on pure HTML and can be styled using the built-in features and capabilities of ThemeBuilder.

These characteristics define the custom components concept in ThemeBuilder:

  • You can create custom components in all types of ThemeBuilder projects—projects created from scratch (blank) and projects starting from Telerik & Kendo UI themes.
  • They consist of pure HTML code.
  • Their HTML must have a single root element with a unique class attribute.
  • They expose HTML elements for styling when you set a class attribute to them.

Creating Custom Component

To create a custom component:

  1. Open an existing ThemeBuilder project and click the + Add Component button.

    Add custom component in ThemeBuilder

    If your project is based on a Telerik and Kendo UI theme, adding your first custom component creates a new My Components section. This section contains all custom components and the + Add Component button.

  2. In the ADD COMPONENT popup:

    • Enter a name for the new component, for example, Login Form.
    • Enter a category or choose an existing one from the categories list.

      Add custom component popup

  3. Select Add Component to add the new custom component.

Adding or Editing Custom Component HTML Content

To add initial or edit existing custom component HTML content:

  1. With your custom component on the screen, select Advanced Edit.
  2. Drill-down to the desired custom component.
  3. Open the Code Editor.

    • If adding initial content to your custom component, select Add HTML.

    Add custom component HTML

    • If updating HTML content in an existing custom component, Select Edit HTML. Edit custom component HTML
  4. Type or paste the HTML content of the component. > When editing custom component HTML, the id attributes are used internally by ThemeBuilder. The exported custom components HTML will not include them.
  5. Select Save or Save & Close once you are done with the changes.

Using the Code Editor

ThemeBuilder incorporates a code editor that allows you to easily manage the HTML content of your custom components. The editor consists of two main parts to ensure comprehensive and fast code input, validation, and preview.

  • HTML code editor—the left pane is an HTML code editor. Use it to type (or paste existing) HTML code with intellisense and common development keyboard shortcuts. The editor validates periodically the HTML code input and guides you with the appropriate warnings or errors when needed by listing them at the bottom of the pane.
  • Code preview—the right pane is the code preview area. It gives you real time preview of the HTML code input with all the existing styles matching the HTML code classes already applied.

    Custom component code editor

Manage Custom Components

To manage and organize custom components:

  1. With your custom components on the screen, select Advanced Edit.
  2. Hover over the drill-down container with the desired component and click the context menu button. Manage custom components
  3. Select the desired action:
    • Click Rename to change the custom component name and/or category.
    • Click Delete to delete it from your custom UI components set. > If the component is used in another one for the purpose of composition and reusability, the component cannot be deleted.

Rename Custom Component Parts

Each custom component element with a set class attribute is exposed for styling in ThemeBuilder. Initially, it appears in the components parts tree with a default name. To improve readability and management, you can change the default names to logically match the HTML elements.

  1. With your custom components on the screen, select Advanced Edit.
  2. Drill-down to the desired custom component.
  3. Select the part you want to rename in the components tree on the right side of the screen.
  4. Click the ... button to open the context menu.
  5. Select Rename.
  6. Enter the new name of the component part and press enter.

    Rename custom component part

Custom Components Reusability & Composition

Modern UI frameworks rely on component composition to reuse existing components and build more complex ones quickly. ThemeBuilder also supports this concept.

To reuse already existing custom or Telerik and Kendo UI components:

  1. Create new or open existing custom component where you want to reuse other UI components.
  2. Select Add/Edit HTML.
  3. Place the cursor on the place in code where you want to insert another component.
  4. In the Code Editor:

    • Type ct- to view a list of all existing custom components that can be inserted. Reuse custom components
    • If your project is based on a Telerik and Kendo UI, type kendo- to view a list of all Telerik and Kendo UI components that can be inserted. Reuse Telerik and Kendo UI components

      When your project contains Kendo component configurations, you can use them in your custom component HTML by typing kendo- followed by the name of the configuration and its configuration options (border radius, fill mode, size, and theme color). For example, a specific configuration of the Large Primary Button applying large size solid primary button with medium rounded corners exists in the Telerik and Kendo UI list of reusable components as kendo-large-primary-button-medium-solid-large-primary.

  5. Select the component you want to insert from the list.

The HTML preview on the right shows the reused component with all its styles applied. When done altering the HTML, select Save & Close.

Styling Custom Components

Consider the following when styling a custom component:

  • To style an HTML element of a custom component, the element must have a class attribute with one or more classes set.
  • Styling custom components works in the same way as with the Telerik and Kendo UI components. For more details, see the Advanced Customization article.
  • You can reuse classes from other custom components and all styles attached to them will be applied. For example, if you have a FromInput component with a sample-form-input class, you can create a FormEmailInput component and apply this class to inherit all its styles.
  • To specifically style a component that reuses other component classes, set a component specific class to it. In the prior example, to specifically style the FormEmailInput component and inherit from FormInput, apply sample-form-input sample-form-email-input classes to the FormEmailInput component.
In this article
Not finding the help you need?