自定义 Ext.Net TreeGrid 节点?
我将使用自定义节点创建 Ext.Net 的 TreeGrid。
例如:
TreeGrid 的所有节点都应在其前面有一个文本框,用户应在其中写入一个数字。
请参见下图:
另外,我必须在代码中获取每个节点的文本框值在回发时落后。
您能否指导我,如何使用 Ext.net 和 C# 创建它?
谢谢。
I'm gonna create an Ext.Net's TreeGrid with custom nodes.
e.g :
All of TreeGrid's nodes should have a textbox at the front of itself and users should write a number at it.
See the below image :
Also, I have to get each nodes' textbox values in code behind at postback.
Could you please guide me, how I can create it with Ext.net and C# ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不幸的是,在 Ext.NET (v1.x) 中使用当前版本的
实现这些功能非常困难。
并未针对此类渲染进行设置。下一个 Ext.NET 版本 (v2) 中将提供帮助,尽管目前尚未发布。
下面是一个基本示例,可帮助您开始渲染
字段。
示例
Unfortunately, implementing these features with the current release of
<ext:TreeGrid>
in Ext.NET (v1.x) is annoyingly difficult. The<ext:TreeGrid>
is just not setup for this type of rendering.There's help coming in the next Ext.NET release (v2), although at this point it has not been released.
Here's a basic sample to help get you started with rendering the
<input>
fields.Example
我可以找到答案:
I could found the answer :