BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
<script type="text/javascript">
//click event of button
function getData(e) {
$("#Grid").ejWaitingPopup("show");//show the waitingpopup control before ajax call
$.ajax({
url: "/Home/GetData",
type: "POST",
dataType: 'json',
contentType: "application/json; charset=utf-8",
success: function (data) {
$("#Grid").ejGrid({ dataSource: data.d.data });
$("#Grid").ejWaitingPopup("hide");//hide the control after binding data to grid
}
});
}
</script> |