<style>
.e-grid th.e-headercell.e-draggable {
cursor: col-resize !important;
}
</style>
<div id="Grid"></div>
<script type="text/javascript">
$(function () {
$("#Grid").ejGrid({
dataSource: window.gridData,
allowReordering: true,
allowResizing: true,
});
});
</script>
</body> |