dataSource.actions.iconString(default: "")

Defines the name for an existing icon in a Kendo UI theme or SVG content that is used for the action button.

Example

<div id="tabstrip"></div>
<script>
    $("#tabstrip").kendoTabStrip({
        dataTextField: "text",
        dataContentField: "content",
        dataSource: [
          {
            text: "Tab with actions",
            content: "Tab content",
            actions: [
              {
                icon: "pencil",
                action: function(e) {
                  console.log("Edit tab", e);
                }
              }
            ]
          }
        ]
    });
</script>
In this article
dataSource.actions.icon
Not finding the help you need?
Contact Support