Telerik 访问 RadGrid 中的文本框列
您是否知道如何访问添加到 radgrid 的文本框,这些文本框未绑定,但用于捕获用户在该列的文本框中键入的任何与行相关的输入。 当发生回发时,我需要访问此数据服务器端。 非常感谢您的想法 谢谢你
托尼
Do you know how to access textboxes added to a radgrid that are not bound but are used to trap any row related input a user typed in to the textbox for that column.
I need to access this data server side when a postback occurs.
Your thoughts are greatly appreciated
Thanking you
Tony
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于如何添加/创建这些文本框。 如果“未绑定”意味着它们位于模板列中,您应该能够在网格事件之一中使用 .FindControl 来获取该文本框。
同样,哪个事件将取决于导致回发发生的原因。
出于此代码示例的目的,我假设您正在处理网格上的命令项
希望有所帮助。
That depends on how those textboxes are being added/created. If by 'not bound' you mean they are in Template columns you should be able to use .FindControl in one of the grid's events to grab that textbox.
And again which event will depend on what is causing the postback to happen.
For the purpose of this code example I'll assume you are dealing with a Command item on the grid
Hope that helps.