在运行时删除项目
我在运行时通过鼠标拖动动态创建了一些形状,现在我想删除白板上的任何选定项目。我怎样才能实现这一点。 目前我可以通过“removeChild()”方法删除最后绘制的项目,但不能删除以前的项目。 请帮忙。
提前致谢。
I have created some shapes dynamically at run time by mouse drag, Now i want to delete any selected item the white board.How can i achieve that.
Currently i am able to delete the last drawn item through "removeChild()" method, but not the previous items.
Please help.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
幸运的是我很快就得到了答案。
要在运行时删除多个项目,我动态地为它们分配了 id,并完成了以下操作:
parentComponent.removeChild(parent.getChildByName("itemName"));
在尝试此操作之前,我正在执行
< strong>parentComponent.removeChild(item);
干杯!
Luckily i got my answer very soon.
To delete multiple items at run time i've assign the ids to them dyanimically and the done the following:
parentComponent.removeChild(parent.getChildByName("itemName"));
before trying this i was doing
parentComponent.removeChild(item);
Cheers !!!