<kendo:grid-noRecords>

If set to true and current view contains no records, message similar to "No records available" will be displayed. By default this option is disabled.

Example

<kendo:grid>
    <kendo:grid-noRecords></kendo:grid-noRecords>
</kendo:grid>

Configuration Attributes

template java.lang.String

The template which is rendered when current view contains no records.

Example

<kendo:grid-noRecords template="template">
</kendo:grid-noRecords>

Event Attributes

template String

The template which is rendered when current view contains no records.

Example

<kendo:grid-noRecords template="handle_template">
</kendo:grid-noRecords>
<script>
    function handle_template(e) {
        // Code to handle the template event.
    }
</script>

Event Tags

kendo:grid-noRecords-template

The template which is rendered when current view contains no records.

Example

<kendo:grid-noRecords>
    <kendo:grid-noRecords-template>
        <script>
            function(e) {
                // Code to handle the template event.
            }
        </script>
    </kendo:grid-noRecords-template>
</kendo:grid-noRecords>
In this article
Not finding the help you need?