ASP.NET MVCでは、JSONとjqueryを使用してグラフのデータを取得しています。コントロールを無効にし、データの読み込みとグラフの描画中にカーソルを待機するように設定する方法はありますか?私のコードの要約は
<script type="text/javascript">
$(document).ready(function () {
$.getJSON(
'@Url.Action("JsonPlot", "Home")',
function (chartData) {
var plot1 = $.jqplot('chartdiv', [points], {...});
});
});
</script>
どこに置けますか
$("*").attr("disabled", "disabled");
$('body').css('cursor', 'wait');
その後
$("*").removeAttr('disabled');
$('body').css('cursor', 'auto');
?
ありがとう!