RadCombobox 不维护所选项目
我已经在 LoadonDemand 事件上绑定了 RadCombo。当我更改 radgrid 的页面时,RadCombo 会丢失其所选项目。 如何维护 RadCombo 选定的项目。 请帮忙
I have binded RadCombo on LoadonDemand Event. when i change page of radgrid, RadCombo looses its selected item.
How to maintain RadCombo selected item.
Please Help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过使用
RadComboBox
的trackChanges()
和commitChanges()
方法在回发期间保留所选项目?http://www.telerik.com/help/aspnet -ajax/combobox-client-side-radcombobox.html
我假设
RadGrid
不包含在RadAjaxPanel
中,因为如果是的话,这将被采取通过部分页面渲染自动处理(即,当分页发生时,只有RadGrid
会重新渲染)。如果您可以发布页面的标记,这可能会有所帮助。Have you tried using the
RadComboBox
'strackChanges()
andcommitChanges()
methods to preserve the selected item across post-backs?http://www.telerik.com/help/aspnet-ajax/combobox-client-side-radcombobox.html
I'm assuming the
RadGrid
is not contained in aRadAjaxPanel
because if it were this would be taken care of automatically through partial page rendering (i.e. only theRadGrid
would be re-rendered when paging occurs). It would probably be helpful if you could post you page's markup.当您翻页时,网格会反弹并重新创建其中的控件。要保留组合框选择,请将其保存到会话对象的缓存中,然后通过连接网格的 PageIndexChanged 事件从那里恢复它。
When you page the grid is rebound and the controls inside it are recreated. To keep the combobox selection, save it Cache of Session object and then recover it from there wiring the PageIndexChanged event of the grid.