New to Kendo UI for jQuery? Download free 30-day trial

Comments

The Spreadsheet offers support for comments to be placed within each of its cells.

The following example demonstrates how a cell in the Spreadsheet can be initially configured to contain a comment.

    <div id="spreadsheet"></div>

    <script>
        $("#spreadsheet").kendoSpreadsheet({
            sheets: [{
                columns: [{
                    width: 300
                }],
                rows: [{
                    cells: [{
                        value: "This cell has a comment.",
                        bold: true,
                        comment: "Comment set on the cell with the Spreadsheet initialization."
                    }]
                }]
            }]
        });
    </script>

See Also

In this article