Share Posted October 30, 2013 when i deleted some items by pressing delete and than exporting xml from transform manger method it shows deleted item properties ? is it bug or i missing someting what should i do. i don't wanna this thanx Link to post Share on other sites
Share Posted October 30, 2013 Pressing the DELETE key does remove the item from the display list, but that's different than calling removeItem() because in some cases people want to still manage (or add back) the item after the user has hit the DELETE key. So if you want to truly remove the item from the TransformManager so that it is no longer managed, simply use removeItem(). You could listen for a DELETE event and in that handler, removeItem(). Link to post Share on other sites
Author Share Posted October 30, 2013 Hmm Ok I see, thanks for reply Link to post Share on other sites