We have the requirement to edit a specific Kendo grid column if model flag status is "yes". It has to done by using a jquery function.
Ex code:
columns.Bound(p => p.Qty).Width(120).ClientTemplate("..some events and function data values----");
columns.Bound(p => p.oldQty).Width(120);
columns.Bound(p => p.id);
I want to edit the QTY column alone based on condition.