Elements
Customize default elements
Although DDV provides many default elements, some customizations are also required, such as, to unify icon style with the original system, to add tooltips and so on.
To change the style and icon of the default elements, can use the properties style
and className
of UiConfig
, please refer to the example below.
Use case
-
Change style and icon of
Dynamsoft.DDV.Elements.DeleteCurrent
.{ type: Dynamsoft.DDV.Elements.DeleteCurrent, className: "ddv-button-done", // can change its icon to your own one style: { background: "blue", // change its background color }, };
Create your own button
Besides the default elements, you may need to create your own button to call other features or your own features. Then you can refer to the steps below to create a customized button.
- Step one: Configure a button UiConfig.
const closeButton = { type: Dynamsoft.DDV.Elements.Button, className: "ddv-button-close", // Set the button's icon tooltip: "close viewer", // Set tooltip for the button events: { click: "close", // Set the click event }, };
- Step two: Place the button in the corresponding positions of the UiConfig and configure the UiConfig when creating the edit viewer.
const uiConfig = Dynamsoft.DDV.getDefaultUiConfig("editViewer"); // Get the default UiConfig of EditViewer const header = uiConfig.children[0]; header.children[1].children.splice(4, 0, closeButton); // Add the close button to the header's right const editViewer = new Dynamsoft.DDV.EditViewer({ container: "viewer", uiConfig: uiConfig, });
- Step three: Configure the button’s event in the specified viewer.
editViewer.on("close", e => { editViewer.destroy(); } );