доброе время сток, коллеги!
разбираюсь в чужом MVC-приложении, на
веб-странице есть след код:
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
<script>
function querycellinfo(args) {
if (args.column.field == "Stat" && args.data.Status == "red")
$($(args.cell).parent()).css("backgroundColor", "#FE2E2E");/*custom css applied to the row */
if (args.column.field == "Stat" && args.data.Status == "yellow")
$($(args.cell).parent()).css("backgroundColor", "#FFFF00");/*custom css applied to the row */
if (args.column.field == "Stat" && args.data.Status == "orange")
$($(args.cell).parent()).css("backgroundColor", "#FF9C00");/*custom css applied to the row */
if (args.column.field == "Stat" && args.data.Status == "green")
$($(args.cell).parent()).css("backgroundColor", "#00FF00");/*custom css applied to the row */
if (args.column.field == "Stat" && args.data.Status == "white")//deepskyblue!
$($(args.cell).parent()).css("backgroundColor", "#00BFFF");/*custom css applied to the row */
if (args.column.field == "MaterialName")
$(args.cell).css("fontSize", "16px");
if (args.column.field == "BlStatusDesc")
$(args.cell).css("fontSize", "16px");
/* if (args.column.field == "Lot")
$(args.cell).css("fontSize", "28px");
if (args.column.field == "LocationName")
$(args.cell).css("fontSize", "32px");
if (args.column.field == "Quantity")
$(args.cell).css("fontSize", "32px");
if (args.column.field == "BlStatusDesc")
$(args.cell).css("lineHeight", "1");*/
if (args.column.field == "MaterialName")
$($(args.cell).parent()).css("lineHeight", "1");
}
</script>
кто мне подскажет, что это за язык?
заранее спасибо