RadCombobox 不维护所选项目

发布于 2024-10-15 04:35:53 字数 103 浏览 5 评论 0原文

我已经在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

那请放手 2024-10-22 04:35:53

您是否尝试过使用 RadComboBoxtrackChanges()commitChanges() 方法在回发期间保留所选项目?

http://www.telerik.com/help/aspnet -ajax/combobox-client-side-radcombobox.html

我假设 RadGrid 不包含在 RadAjaxPanel 中,因为如果是的话,这将被采取通过部分页面渲染自动处理(即,当分页发生时,只有 RadGrid 会重新渲染)。如果您可以发布页面的标记,这可能会有所帮助。

Have you tried using the RadComboBox's trackChanges() and commitChanges() 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 a RadAjaxPanel because if it were this would be taken care of automatically through partial page rendering (i.e. only the RadGrid would be re-rendered when paging occurs). It would probably be helpful if you could post you page's markup.

等往事风中吹 2024-10-22 04:35:53

当您翻页时,网格会反弹并重新创建其中的控件。要保留组合框选择,请将其保存到会话对象的缓存中,然后通过连接网格的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文