Closed
Bug 36523
Opened 26 years ago
Closed 26 years ago
more then one XUL textfield widgets in a tapanel don't work correctly
Categories
(Core :: XUL, defect, P3)
Tracking
()
People
(Reporter: gb, Assigned: eric)
Details
Attachments
(1 file)
|
1.60 KB,
text/xul
|
Details |
** TITLE/SUMMARY
More then one XUL textfield widgets in a tapanel don't work correctly.
Only the first textfiel is displayed with his value.
Is this the same BUG as #36515 ?!?
* STEPS TO REPRODUCE
1) Use More the one textfiel in a tabpanel
2) Write some text in the textfields
3) switch to an other tab
4) switch back to fisrt tab
6) see the bug :-)
* RESULT
- What happened
Only the first texfield is displayed with his value.
To see the value of the other textfields left-mouse-click on textfield.
- What was expected
See all textfields with there values
* REGRESSION
- Occurs On
Mozilla 2000041811 (Linux)
Mozilla 2000041915 (Linux)
Mozilla 2000041805 (Windows)
* CONFIGURATIONS TESTED
SuseLinux 6.3 on i686
WinNt 4.0 german on i586
* XUL SNIPPET
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window
xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<tabcontrol align="vertical">
<tabbox align="horizontal">
<tab value="Tab One"/>
<tab value="Tab Two"/>
<tab value="Tab Three"/>
</tabbox>
<tabpanel flex="100%" orient="vertical">
<box orient="vertical" flex="100%">
<textfield/>
<text value="ok"/>
</box>
<box orient="vertical" flex="100%">
<textfield/>
<textfield/>
<text value="only the first textfield works correct !" style="color:red"/>
</box>
<box orient="vertical" flex="100%">
<textfield/>
<textfield/>
<textfield/>
<text value="only the first textfield works correct !" style="color:red"/>
</box>
</tabpanel>
</tabcontrol>
</window>
Comment 1•26 years ago
|
||
I don't see this in the 42009 verification build on Linux. Perhaps you meant to
write:
<textfield value="one"/>
<textfield value="two"/>
which also works fine for me. resolving as wfm, please reopen with additional
info if I'm missing something.
Status: UNCONFIRMED → RESOLVED
Closed: 26 years ago
Resolution: --- → WORKSFORME
Comment 2•26 years ago
|
||
Comment 3•26 years ago
|
||
Not really sure if this is strictly Editor, as the textfield is an XBL widget.
Status: RESOLVED → UNCONFIRMED
Resolution: WORKSFORME → ---
I don't mean :
<textfield value="one"/>
<textfield value="two"/>
I have a request form in my application with different "empty" textfields for
user input. This textfield or in a tappanel. IMHO i has to use <textfield/>
Today is "weekend" in germany (until monday) i will test my application with
<textfield value=""/> and a new Mozilla version on 04.25.2000 .
Comment 5•26 years ago
|
||
Okay, I see what the defect is now. confirming and assigning to evaughan for
triage, cc beppe on the liklihood that this is really an editor problem.
Assignee: trudelle → evaughan
Status: UNCONFIRMED → NEW
Ever confirmed: true
| Assignee | ||
Comment 7•26 years ago
|
||
*** This bug has been marked as a duplicate of 35045 ***
Status: NEW → RESOLVED
Closed: 26 years ago → 26 years ago
Resolution: --- → DUPLICATE
Comment 8•25 years ago
|
||
The bug this has been marked a duplicate of is fixed, and this now WFM under
Linux build 2000102421. Verified dupe.
Status: RESOLVED → VERIFIED
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
•