0
@{
reModel rm = new reModel();
IList<ReRoomType> types = rm.ReRoomTypes.ToList();
foreach(ReRoomType type in types)
{
<li><a href="#" onclick="showDetail(@type.PKiRoomTypeID)">@type.SRoomTypeName</a></li>
}
}
@(Html.Kendo().Window()
.Name("window")
.Title("Detail Information")
.Content("")
.Draggable()
.Resizable()
.Width(600)
.Actions(actions => actions.Refresh().Maximize().Close())
)
<script type="text/javascript">
function showDetail(id)
{
$(document).ready(function() {
$("#window").data("kendoWindow").center();
$("#window").data("kendoWindow").open();
});
}
</script>
有整個的東西我做到了,現在我怎樣才能通過類似ID或名稱或等.... 從列表窗口提前將數據傳遞給劍道UI
感謝
感謝回答我的問題 的第一個問題就解決了 但如何從列表數據傳遞到劍道窗口 – user1392853 2013-02-23 09:57:57
不要忘記以標記爲答案,如果這就是你想要實現的:P – 2013-02-23 09:58:45
我編輯了這個問題以使它更容易 – user1392853 2013-02-23 10:12:11