在 telerik razor 控件的弹出窗口中编辑下拉列表问题
我在 Telerik Razor Control 中创建了下拉列表。现在的问题是,当我单击“编辑”按钮 gridview 时,会出现一个弹出窗口,并且我得到的下拉列表中充满了值。bt 我没有获取选定的下拉列表值...我的意思是我没有获取所选记录的特定值。 .它给出了下拉列表中的所有值,就像我们单击“添加”按钮时得到的值一样......所以任何人都可以帮我吗
I have created dropdownlist in Telerik Razor Control. Now the problem is while i click on Edit button gridview one pop up window will come and i am getting dropdownlist filled with values..bt i am not getting selected dropdownlist value... i mean i am not getting particular value of selected records..its giving all the values in dropdownlist like what we are getting while we click on add button...so can anyone please help me out
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道这个答案迟了一年,但无论如何我都会发布。
对于 MVC:在网格中,使用字段的外键定义下拉列表,如下所示:
,在加载网格视图的函数中定义下拉列表的数据:
该函数看起来像这样:
然后在控制器中 弹出窗口(模板)定义 DropdownList:
这应该正确地将记录的选定值绑定到下拉列表。
I know this answer is a year late but I ll post it anyway.
For MVC : In your grid, define the dropdownlist with the foreigkey for the field as such :
Then in your controller define the data for the dropdownlist in the function that is loading the view for the grid :
This function would look something like this :
In the pop up (template) define the DropdownList:
This should correctly bind the selected value of the record to the dropdownlist.