You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
461 B
23 lines
461 B
function grid_onError(e) {
|
|
//Suppress the alert
|
|
e.preventDefault();
|
|
}
|
|
|
|
//Highlight rows based on a number of details
|
|
function highlightRow(e) {
|
|
var row = e.row;
|
|
var dataItem = e.dataItem;
|
|
|
|
var ignored = dataItem.Ignored;
|
|
var status = dataItem.Status;
|
|
|
|
if (ignored) {
|
|
$(row).addClass('episodeIgnored');
|
|
return;
|
|
}
|
|
|
|
if (status == "Missing") {
|
|
$(row).addClass('episodeMissing');
|
|
return;
|
|
}
|
|
} |