
function hideNavBarsOnScroll() { var ggPosn = '0'; var log = ''; var drag = new kendo.Drag($('#endless-scrolling'), { start: function (e) { if (e.y) { ggPosn = $('#endless-scrolling').offset().top; } }, move: function (e) { if (e.y) { if ($('#endless-scrolling').offset().top < ggPosn) { if ($('#homeview header').is(':visible')) { $('#homeview header').slideUp('slow'); $('#homeview .km-footer').attr('style', 'position:absolute;').animate({ 'bottom': '-' + $('#homeview .km-footer').height() + 'px' }, 'slow', function () { }); } } else { if ($('#endless-scrolling').offset().top > ggPosn) { if ($('#homeview header').is(':visible') == false) { $('#homeview header').slideDown('slow'); $('#homeview .km-footer').attr('style', 'position:absolute;').animate({ 'bottom': '0px' }, 'slow', function () { }); } } } } }, end: function (e) { if (e.y) { ggPosn = $('#endless-scrolling').offset().top; } } });}var tourt = kendo.template('<tr><td>${TotalRegistration=MemberRegistrationCount+GuestRegistrationCount}</td></tr>');
var tourh = '<table id="tourg"><thead><tr><th># Registered</th></tr></thead></table>';
tourngrid = $('#tourg').kendoGrid({ rowTemplate: tourt }).data('kendoGrid');
$('#minUsers').kendoNumericTextBox();
$('#goFilter').click(function() {
tourngrid.dataSource.filter({filter: { field:"TotalRegistration", operator:"ge", value:$('#minUsers').data('kendoNumericTextBox').value()}});
});
Amazingly the assignment in the row template still reports the correct number in the grid column. But it does not execute the filter using that assigned variable defined in the template.
Is there a way to sum two columns and use the result in the grids filter?
I have an issue with binding the click event to a label in a template.
I’ve posted issue on JSFiddle: http://jsfiddle.net/scornell10/JFTbk/
When you select an item in the DataGrid, it is moved to the ListView.
The ListView uses a template that has a label (with the value of X) that I bind the click event too.
The bind works for 1st or the last selection.
If I select multiple, only the last item in the listView has the click event bind to it. All the others go away.
I’ve used Chrome dev tools and I can see the click event disappear when I add another item.
I can get a workaround by changing the template to:
<label>${Name}</label><label id="${ID}" onClick="onDelete(this);">X</label>
I’d rather bind dynamically as each item is selected.
Any thoughts on why it seems to remove the click handler?
Thanks