<div data-role="scrollview" data-page="2">The pager displays the right page, but the scroller stays on the first photo after initialization.
In my ASP. Net MVC App, I would like to add Bar Chart with X Axis labels as images.
Ex: Category wise Sales Chart I want to display is Category as a Image in place of text.
Is this possible in Chart API?. If possible could you please share details.
var
templateContent = $(
"#tmpl_jailcard"
).html();
var
template = kendo.template(templateContent);
$(
"#scr_jailcard"
).html(template(data));
app.navigate(
"#scr_jailcard"
);<br>
var
templateContent = $(
"#tmpl_jailcard"
).html();
var
template = kendo.template(templateContent);
$(
"#scr_jailcard"
).html(template(data));
app.navigate(
"#scr_jailcard"
);
// The following simulates the problem by re-applying template and navigating to it
$(
"#scr_jailcard"
).html(template(data));
app.navigate(
"#scr_jailcard"
);
$plugin.closest('span').append('<img src ="srb-images/srb-delete.png" class="bar">').find('img').kendoTouch({ tap: function(e) {
console.log(e.touch.target.attr('class') + " was tapped");
e.touch.target.prev().focus();
}
});
});