Closed
Bug 78178
Opened 24 years ago
Closed 24 years ago
Fix two inline edit kludges
Categories
(Core :: XUL, defect)
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?
Assignee | ||
Comment 3•24 years ago
|
||
INVALID as we're not using this widget anymore.
A new inline edit widget will appear soon.
Status: NEW → RESOLVED
Closed: 24 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.
Description
•