Displaying 1 result from an estimated 1 matches for "tryiny".
Did you mean:
trying
2005 Nov 20
1
Deleting InPlaceEditor
...l InPlaceEditor''s for each of my menu items. This way i
can easily rename them, however when i rename a menu item, it renames
several id''s in the document.
I then need to adjust an InPlaceEditor to point to the new id. It seems an
inplaceeditor cannot be changed, so i have been tryiny to delete it, then
create a new one.
How do i delete an InPlaceEditor? I thought it would be something simple
like:
var ipe["menuItem1"] = new Ajax.InPlaceEditor( ''name, ''link'', {} );
delete ipe["menuItem1"];
or ipe["menuItem1"] = null;...