BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
<script type="text/javascript">
$(function () { $("#btn").ejButton({ text: "Button", click: function (args) { $("#FlatGrid").ejWaitingPopup("show"); //you can show the waiting popup- before bind the data to grid
$.ajax({ url: "/Grid/Edit", type: "GET", success: function (data) { $("#FlatGrid").ejGrid("model.dataSource", data.Items); $("#FlatGrid").ejWaitingPopup("hide"); //hide waiting popup – after bind the data to Grid }, error: function (xhr) { alert('error'); } });
} }) }) |