This is a migrated thread and some comments may be shown as answers.

Custom Tooltips for EACH "InsertHtml" item?

0 Answers 52 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Kevn
Top achievements
Rank 1
Kevn asked on 25 Sep 2012, 02:23 PM
Does anyone know how to add tooltips for EACH "InsertHtml" item?  Example: I want something like this.


    $(document).ready(function () {
        $("#editor").kendoEditor({
            tools: [
                "bold",
                "italic",
                "underline",
                "strikethrough",
                "fontName",
                "fontSize",
                "foreColor",
                "backColor",
                "insertHtml",
            ],
            insertHtml: [
                { text: "Request.FirstName", value: "#Request.FirstName#" toolTip: "Inserts users first name" },
                { text: "Request.BirthDay", value: "#Request.BirthDay#" toolTip: "Inserts users date of birth" }
            ]
        });
    });

No answers yet. Maybe you can help?

Tags
Editor
Asked by
Kevn
Top achievements
Rank 1
Share this question
or