Opened 13 years ago
Closed 13 years ago
#5001 closed defect (wontfix)
Using links breaks inner split pane in Firefox
Reported by: | guest | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Dijit | Version: | 0.9 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description (last modified by )
We use a similar layout like the SplitLayoutExample? from dmachi (see http://dojotoolkit.org/~dmachi/examples/SplitLayoutExample.html), the only difference is that the left navigation pane contains links to navigate through the contents in the bottom split area. This works in IE6 but breaks the layout of the inner split pane in FF 2.0.0.8 if the user ckicks on a link in the navigation pane. In order to demonstrate this I modified the SplitLayoutExample? from dmachi. See attached file.
Attachments (3)
Change History (4)
Changed 13 years ago by
Attachment: | SplitContainerExample_link.html added |
---|
Changed 13 years ago by
Attachment: | SplitLayoutExample.jpg added |
---|
Changed 13 years ago by
Attachment: | SplitLayoutExample_broken.jpg added |
---|
Layout after user has clicked target4
comment:1 Changed 13 years ago by
Description: | modified (diff) |
---|---|
Resolution: | → wontfix |
Status: | new → closed |
Hmm, I can reproduce the behavior, but the thing is that you are sending the browser to a new URL (by following the #target4 hyperlink), except that the new URL is quite similar to the old one so the page isn't actually refreshing... and dijit really isn't set up for things like that. The only suggestion I can make is to modify those links to do something in javascript, rather than making them tell the browser to go to a different UTL. (You could have an onclick handler that calls dojo.stopEvent(evt),
Layout before clicking target4