Opened 13 years ago
Closed 13 years ago
#5565 closed defect (fixed)
Wrong title of Floatingpane in Dock
Reported by: | guest | Owned by: | dante |
---|---|---|---|
Priority: | high | Milestone: | 1.1 |
Component: | Dojox | Version: | 1.0 |
Keywords: | Floatingpane title | Cc: | |
Blocked By: | Blocking: |
Description
Create a Floatingpane and change the title with
myFP.setTitle("my new title");
Now when you dock (minimize) the floatingpane, the old title is displayed in the dock, because function
setTitle: function(/* String */ title){ // summary: Update the string in the titleNode this.titleNode.innerHTML = title; },
forgets to change this.title = title. The dock-title is computed from this.title.
Change History (2)
comment:1 Changed 13 years ago by
Component: | General → Dojox |
---|---|
Milestone: | → 1.1 |
Owner: | changed from anonymous to dante |
Status: | new → assigned |
comment:2 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
(In [12002]) fixes #5565 - and some cleanups