Closed Bug 78178 Opened 23 years ago Closed 23 years ago

Fix two inline edit kludges

Categories

(Core :: XUL, defect)

x86
Windows 95
defect
Not set
trivial

Tracking

()

RESOLVED INVALID

People

(Reporter: neil, Assigned: bugs)

References

()

Details

Inline edit fields are not easily skinnable:
ileattr="text" can only be set on a text node;
rootcontent must be set to the tag name to which the binding will be bound.
I would like to use ile when neither of these apply.

field.setAttribute("value", txt.getAttribute("value"));
field.setAttribute("ileattr", "field");
field.setAttribute("rootcontent", txt.getAttribute("rootcontent"));

should be:

field.value = this.label;
field.setAttribute("ileattr", "field");
field.setAttribute("rootcontent", this.localName);

Or am I missing something?
->hyatt
Assignee: trudelle → hyatt
--> ben
Assignee: hyatt → ben
INVALID as we're not using this widget anymore. 

A new inline edit widget will appear soon. 
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → INVALID
Component: XP Toolkit/Widgets: XUL → XUL
QA Contact: jrgmorrison → xptoolkit.widgets
You need to log in before you can comment on or make changes to this bug.