1
我設立了一個項目,劍道UI的第一次,我試圖創建劍道UI下拉列表,但我越來越:劍道UI的DropDownList - HTML輔助(剃刀) - 硬編碼列表選項
ArgumentNullException未被用戶代碼處理。 - 值不能爲空。
我的代碼是:
@(Html.Kendo().DropDownList()
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List<SelectListItem>()
{
new SelectListItem()
{
Text = "Active",
Value = "1"
},
new SelectListItem()
{
Text = "In-active",
Value = "2"
}
})
.Value("1")
) <-- the error is pointing to here.
有誰知道缺什麼價值?
謝謝,
異常的堆棧跟蹤包含* *非常有用的信息。具體在這種情況下,哪個方法拋出異常? – David
嘗試添加.Name(「componentName」) – Rustam