|
<head>
<style>
.e-treegridrows .e-rowcell {
font-weight: normal !important;
}
.e-taskbarname{
font-weight: normal !important;
}
</style>
</head> |
|
<script type="text/javascript">
$(function () {
var data = projectData;
rowDataBound: function (args) {
if (args.data.item.id == "5") {
$(args.rowElement).find(".e-rowcell ").css("font-weight", "normal");
}
},
//..
});
});
</script> |
|
$(function () {
var data = projectData;
queryCellInfo: function (args) {
if (args.cellValue == "zadanie12") {
$(args.cellElement).find(".e-cell ").css("font-weight", "normal");
}
},
//..
});
});
</script> |