up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question

73% accept rate
feedback

1 Answer

up vote 0 down vote accepted

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 !!!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.