あなたのメソッド、div の名前がわかりません。これが役立つ場合は、それに応じて変更してください。次のようにしてみてください。
$("#DateDiv").datepicker({
showOtherMonths: true,
selectOtherMonths: true,
dateFormat: "yy/mm/dd",
onSelect: function (dateText, inst)
{
UpdateGraph(dateText);
},
onChangeMonthYear: function(year, month, inst)
{
$.ajax({
async: false,
cache: false,
contentType: "application/json; charset=utf-8",
dataType: "json",
url: "@Url.Action("LoadGraph", "YourController")",
data:
{
date: new Date(year, month - 1, 1).toString("yyyy/MM/dd")
},
success: function (data)
{
$("#UpdateGraphDataDiv").html(data);
},
error: function (request, status, error)
{
DisplayErrorMessageBox(ParseErrorFromResponse(request.responseText, "Unknown error"), true);
}
});
}