Hi ArunKumar,
You can simulate a ProgressBar by using any Grid column’s “cellsrenderer” callback function which you can attach to a column of your choice.
Example:
cellsrenderer: function (row, colum, value) { var cell = '<div style="margin-top:5px;">'; cell += '<div style="background: #058dc7; float: left; width: ' + value + 'px; height: 16px;"></div>'; cell += '<div style="margin-left: 5px; float: left;">' + value.toString() + '%' + '</div>'; cell += '</div>'; return cell; }
Best Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com