Hi,
I have used kendo mvc grid with ajax binding. One of the column of grid has small size thumbnails. when I hover on those thumbnails they should get expanded(zoom in zoom out) outside the cell so it does not affect row height.
i have used below javascript function and i am calling it on onmouseover event of img tag inside clienttemplate, but it expands images inside cell. I want it outside the cell. Can you please let me know how i can achieve it without using lightbox or jquery hoverintent plugins
<script>
function MyFunction()
{
$(document).ready()
{
$("#GridTable tbody tr td #wrap #Grid .k-grid-content table tbody tr td text img").hover(function() {
kendo.fx(this).zoom("in").startValue(1).endValue(2).play();
}, function() {
kendo.fx(this).zoom("out").endValue(1).startValue(2).play();
});
}
}
</script>
I have used kendo mvc grid with ajax binding. One of the column of grid has small size thumbnails. when I hover on those thumbnails they should get expanded(zoom in zoom out) outside the cell so it does not affect row height.
i have used below javascript function and i am calling it on onmouseover event of img tag inside clienttemplate, but it expands images inside cell. I want it outside the cell. Can you please let me know how i can achieve it without using lightbox or jquery hoverintent plugins
<script>
function MyFunction()
{
$(document).ready()
{
$("#GridTable tbody tr td #wrap #Grid .k-grid-content table tbody tr td text img").hover(function() {
kendo.fx(this).zoom("in").startValue(1).endValue(2).play();
}, function() {
kendo.fx(this).zoom("out").endValue(1).startValue(2).play();
});
}
}
</script>