Adding a Button to the Add Toolbar

The Add Toolbar appears in the AlloyEditor when your cursor is in the editor and you click the Add button:

Figure 1: The Add toolbar lets you add content to the editor.

Figure 1: The Add toolbar lets you add content to the editor.

Follow these steps to add a button to the AlloyEditor’s Add Toolbar:

  1. Inside the populateConfigJSONObject() method, retrieve the Add Toolbar:

    JSONObject addToolbar = toolbarsJSONObject.getJSONObject("add");
    
  2. Retrieve the existing Add Toolbar buttons:

    JSONArray addToolbarButtons = addToolbar.getJSONArray("buttons");
    
  3. Add the button to the existing buttons. Note that the button’s name is case sensitive. The example below adds the camera button to the Add Toolbar:

    addToolbarButtons.put("camera");
    

    The camera button is just one of the buttons available by default with AlloyEditor, but they are not all enabled. Here’s the full list of available buttons you can add to the Add Toolbar:

    • camera
    • embed
    • hline
    • image
    • table

    See here for an explanation of each button’s features.

  4. Update the AlloyEditor’s configuration with the changes you made:

    addToolbar.put("buttons", addToolbarButtons);
    
    toolbarsJSONObject.put("add", addToolbar);
    
    jsonObject.put("toolbars", toolbarsJSONObject);
    
  5. Deploy your module and create new content that uses the AlloyEditor—like a blog entry or web content article—to see your new configuration in action!

The com.liferay.docs.my.button module’s updated Add Toolbar is shown in the figure below:

Figure 2: The Updated Add toolbar lets you add pictures from a camera directly to the editor.

Figure 2: The Updated Add toolbar lets you add pictures from a camera directly to the editor.

Adding New Behavior to an Editor

Adding a Button to a Styles Toolbar

« Creating the OSGi Module and Configuring the EditorConfigContributor ClassAdding a Button to a Styles Toolbar »
Este artigo foi útil?
Utilizadores que acharam útil: 0 de 0