防止在 Row_Updaing 事件中的 AspxGridView 编辑模式下触发 Repeater_ItemDataBound 事件(哇!!!)
大家好!
在.net中,我有一个Devexpress控件[aspxgridview]...在这个控件的编辑模式下,我填充了一个转发器,
当我按下时, 它有ItemDataBound事件更新 btn(网格),itemdatabound 调用 &工作得很好&我选择一个项目(是一个 radioBtn)
但是
当我按下 updateBtn 时,我说的那个事件 (itemdatabound) 再次触发& 我选择的项目已清除(我在哭)
请帮助我亲爱的!!
提前致谢
穆罕默德
Hello everybody !
In .net , i have a Devexpress control [aspxgridview ]... in edit mode of this control , i fill a repeater that has ItemDataBound event
when i press on update btn (of grid) , itemdatabound calls & works very well & i choose an item (is a radioBtn)
BUT
when i press updateBtn , that event i said (itemdatabound) fires again &
my selected item CLEAR (i'm crying)
please help me dears!!
thanks in advance
mohammad
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您的按钮正在执行回发,因此您需要重新创建页面上的所有项目并重新数据绑定才能显示它们。没有太多可做的,听起来您需要保留所选项目,以便您可以在每次回发时重新创建/重新数据绑定中继器。
如果您发布代码,我可能会提供更多帮助。
Since your button is doing a postback, you need to have all items on your page re-created and re-databound in order for them to be displayed. Without having much to go on, it sounds like you need to hold onto your selected item so you can re-create/re-databind the Repeater with every post back.
I may be able to be of more help if you post your code.