ajaxの投稿後にjQueryモバイルリストビューを更新しようとしています。.trigger( "create")を使用して次のようにしようとしています。
<div data-role="content">
<div id="linksHolder" data-role="controlgroup" data-type="horizontal">
<a id="most-played" href="#" data-role="button" data-mode="mostplayed">Most Played</a>
<a id="latest-added" href="#" data-role="button" data-mode="latestadded">Latest Added</a>
<a id="featured" href="#" data-role="button" data-mode="featured">Featured</a>
</div>
@Html.HiddenFor(model => model.Mode)
<ul class="video-list" data-role="listview" data-divider-theme="a" data-inset="true"></ul>
</div><!-- /content -->
<script class="videoTemplate" type="text/x-jQuery-tmpl">
<li data-theme="c">
<a href="${LinkToVideo}">
<img src="${ThumbnailPath}" alt="video 1" />
<div class="title">${Title}</div>
<div class="description">${Description}</div>
<div class="additional-details">
<b>Category:</b> ${Category}<br />
<b>Contributor:</b> ${Contributor}
</div>
</a>
</li>
</script>
<script type="text/javascript">
DrawPageContent();
// function to redraw the page content with the mode passed
$(document).on("click", "#linksHolder a", function () {
//alert("Inside link");
var mode = $(this).attr("data-mode");
$("#Mode").val(mode);
DrawPageContent();
});
// Renders the JSON data into HTML and displayed through a jQuery template
function DrawPageContent() {
var mode = $("#Mode").val();
var jsonUrl = "/mobile/GetVideos?mode=" + mode;
$.ajax({
'async': false,
'global': false,
'url': jsonUrl,
'dataType': "json",
'success': function (data) {
// Render the videos using the template
$(".video-list").html($(".videoTemplate").tmpl(data));
$(".video-list").trigger("create");
}
});
}
</script>
$('。video-list')。listview('refresh');も使用してみました。しかし、これもうまくいきませんでした。JSONデータは正常に更新されていますが、jqueryモバイルCSSクラスが適用されていないため、リストビュースタイルが失われています。何かご意見は??
ありがとう