动态创建组件

发布于 2024-08-11 05:58:00 字数 319 浏览 0 评论 0原文

我对 AdvancedDataGrid 有要求。

在高级数据数据网格中,包含复选框、文本字段、文本区域、按钮、单选按钮。以及“添加”按钮和“提交”按钮。当我单击“添加”按钮时,需要在下一行中动态添加上述所有字段。如果我单击“添加”按钮 10 次,则需要添加包含所有上述字段的 10 行。

如果有任何示例代码,请转发到我的 gmail id:[电子邮件受保护]

I have requirement in AdvancedDataGrid.

In Advanced Data Datagrid with columns checkbox,textfield, textarea,button,radiobutton. and ADD Button and SUBMIT Button. When i click on ADD Button, those above all fields are need to add dynamically in next row.If i click 10 times on ADD Button, 10 rows with all above fileds need to be added.

If Have any sample code please forward to my gmail id:[email protected].

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

过期情话 2024-08-18 05:58:00

您应该与底层数据提供者合作来添加新行。每当按下添加按钮时

adg.dataProvider.addItem( newItemFromAboveRow );

,ADG 就会为您整理显示内容。

You should work with the underlying data provider for the adding of new rows. whenever the add button is pressed do

adg.dataProvider.addItem( newItemFromAboveRow );

and the ADG will sort out the display for you.

忘羡 2024-08-18 05:58:00

创建自定义项目/行渲染器。更多使用项目渲染器和项目编辑器

Create custom item/row renderers. More Using Item Renderers and Item Editors

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