2016-03-14 62 views
0

我在我們的ASP.net MVC應用程序中使用Kendo UI MVC包裝。在用戶創建視圖中,根據數字框的值(兒童人數),我需要動態顯示小部件名稱和小孩年齡的小部件。
我們如何使用Kenod UI MVC來實現這一目標?有人可以分享實現上述場景的演示的URL嗎?Kendo UI MVC:按需添加小部件(動態)

回答

2

您必須生成表單元素。您可以生成HTML和追加到div容器,並設置data-role所有劍道窗口小部件,然後調用kendo.init()在該容器中,e.g:

// Do this inside a loop by the Number of Children set in the other form element 
$("#container").append("<input type='numeric' data-role='numerictextbox' name='child_age[]' />"); 
kendo.init("#container"); 

Working demo

+1

這工作。謝謝!! – vineel