We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f622b99 commit 08ae8aaCopy full SHA for 08ae8aa
1 file changed
Views/MainAdmin/SubPlots.cshtml
@@ -80,6 +80,8 @@
80
.Sortable().ClientEvents(x => x.OnDataBound("UpdateGridColors"))
81
.Filterable()
82
.ClientEvents(x => x.OnDataBinding("Grid_onDataBinding"))
83
+ .ClientEvents(clientEvents => clientEvents
84
+ .OnDataBound("onDataBound"))
85
.Columns(columns =>
86
{
87
columns.Bound(c => c.Name);
@@ -300,6 +302,11 @@
300
302
301
303
<script type="text/javascript">
304
305
+ function onDataBound() {
306
+ resetAllTelerikIconTitles();
307
+ addTooltips();
308
+ }
309
+
310
$(document).ready(function () {
311
312
$(".plotids").eq(0).val(@defaultPlotId);
0 commit comments