Hi Irfan,
Thank you for contacting Syncfusion support.
We have achieved your requirement using queryCellInfo event. This event is triggered, every time when a request is made to access a particular cell information, element, and data. In this event, we can set text for cells only for displaying purpose. Please refer to the Help document, code example and sample.
queryCellInfo: function (args){
if(args.column.field == "Code" && args.text.length == 1)
$(args.cell).text(0 + args.text);// this for display purpose only
}, |
Regards,
Jayaprakash K.