我正在研究一个剑道网格,在其数据绑定事件中,我调用了一个函数来检查每个行的第二个块中的值是否大于第一个块。如果为true,那么我通过添加一个类来改变文本内部的颜色。 但是,问题是当我在浏览器上看到时,添加的类最终会消失。 如果有两行有错误,我正在编辑的第一行不会保留该类,但后面的那些行保持不错。
dataBound: configureGridProperties,
dataBound的代码是
function configureGridProperties(e) {
try {
if (true) {
$('#grid .k-grid-content tr[role=row]').each(function (i) {
var sh = $(this).find('.sh').text();
var sm = $(this).find('.sm').text()
var eh = $(this).find('.eh').text()
var em = $(this).find('.em').text()
var startMin = parseInt(sh) * 60 + parseInt(sm);
var endMin = parseInt(eh) * 60 + parseInt(em);
if (startMin > endMin) {
showOutputExplicitly('Start time cannot be less than end time');
$(this).find('.sh, .sm,.eh,.em').addClass('timeError');
$('div.k-grid-pager').hide();
errorInTime = false;
}
else {
$(this).find('.sh, .sm,.eh,.em').removeClass('timeError');
if (!$('.timeError').length > 0) {
$('div.k-grid-pager').show();
hideErrorMsgSlow();
errorInTime = true;
}
}
});
}
return false;
} catch (e) {
}
pic的情况。 >
我刚刚编辑的第二行(开始时间23)并没有持有colorChange类,但早期的那些持有。在dataBound事件之后是否还有其他事件发生。