如何在 RadGrid 的 FormTemplate 内设置 Telerik RadComboBox 的 SelectedValue 属性
我有一个我认为应该是一个简单的问题。我有一个带有 FormTemplate 编辑和 AJAX 功能的 RadGrid。 FormTemplate 中的字段之一是 RadComboBox,其中填充了美国各州的选择。我可以将 RadComboBox 绑定到数据源以填充所有项目,但无法设置 SelectedValue 属性。
当单击 RadGrid 上的行的“编辑”按钮时,会加载此 RadComboBox。使用自定义 FormTemplate,并通过 AJAX 加载正在编辑的行的内容。
I have what I think should be a straightforward question. I have a RadGrid with FormTemplate editing and AJAX enabled. One of the fields in the FormTemplate is a RadComboBox filled with U.S. State selections. I can bind the RadComboBox to the data source to populate all the items, but I'm not able to set the SelectedValue attribute.
This RadComboBox is loaded when the Edit button is clicked for a row on the RadGrid. A custom FormTemplate is used and the contents of the row being edited are loaded via AJAX.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用数据绑定,那么它实际上就像
在 RadComboBox 的 FormTemplate 声明内添加一样简单。
但是,如果您想以编程方式确定选择什么值,则需要在 RadGrid 中实现 ItemDataBound,像下面的例子:
If you are DataBinding, its literally as easy as adding
Inside the FormTemplate declaration of the RadComboBox.
If you however want to programmatically determine what value to select, then you need to implement ItemDataBound in the RadGrid, like the following example:
最初清除 radcombobox 的所有项目,然后手动添加一个新项目,
这就是我在使用 Web 服务时设置新项目的方法
clear all items of radcombobox initially and then add a new item manually
this is what i do to set new item when i use web service