RE: CVS broken?

"Christian Boulanger" <[email protected]>
Newsgroups gmane.comp.windows.devel.netwindows
Message-ID <005701c370f3$36724c50$0200a8c0@Laptop>
Alex and everybody,

Several issues

1.) Split pane

Thanks for the bugfix, now it works in Mozilla, but it still does not work
in Internet Explorer:

http://www.panyasan.de/bibliograph-test/

The split pane content is not visible. My code is:

cont = document.getElementById("container");
	
splitwin = new NW_WIDGET_FACTORY_split_pane(true, "200", true, 5);
cont.appendChild(splitwin.domNode);
//splitwin.fixBottomPane(); // I had to remove this since it produced a
syntax error.
			
__env__.addToPageQueue("get.php?proc=tree.showTree&param=3",
splitwin.pane1obj.contentNode);
__env__.addToPageQueue("start.html", splitwin.pane2obj.contentNode);

2) Tree 

If we look at the Mozilla working version, you can see that it does not look
nice. For our project, it would be important to have a stable and
nice-looking tree widget. There are plenty java-script implementations
around, but we would prefer to use the "native" NW widget. So maybe you
could give some thought to an update. Important would be to be able to use
different images at different points of the tree (files, folders, urls etc
etc.), and an overall better looking theming. Also, it does not look nice
that the tree has a background different from the underlying pane, so that
the background color expands with the tree. 

3) __data__ widget

Are there any news on the __data__ widget? If you have more or less stable
versions ready, let us know how to use them, then we can give you some
feedback on bugs and issues...

4) remove popup does not work

I have tried to implement a popup please-wait-while-loading mechanism, but
it does not work.

Here is the code:

       // Popup-Window
            
            function showPopUp(text) {
                if(window.PopUp) {
                    PopUp.contentNode.innerHTML = "<p align='center'>" +
text + "</p>";
                } else {
                    PopUp = NW_WIDGET_FACTORY_alert_box("Alert",text,"400",
"110");
                    document.body.appendChild(PopUp.domNode);
                }
            }    
            function hidePopUp() {
                window.PopUp.remove();
            }

            function showFolder(id) 
            {
                showPopUp("page is loading...");
 
__env__.addToPageQueue("get.php?proc=folder.retrieveFolderData&param="+id,
                    splitwin.pane2obj.contentNode,
                    false,hidePopUp());
            }

Either the popup does not go away, or it does not appear at all if I have
"clicked it away" previously.
Any thoughts?

So much for now. What do you think about the i18n issue?

Christian 







_______________________________________________
The netWindows developers list: [email protected]
http://netwindows.org/mailman/listinfo/devel_netwindows.org
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.