We have an ancient application that basically duplicates a file explorer, outlook style application in html (menu and toolbar on top, tree on the left, gridview on the right, and yes I know it is a bad idea to bring desktop UI to the web, but it was 2000 and seemed like a good idea at the time). The main problem (other than the HTML is from ~2000) is that it is an Internet Explorer only application, and due to the horrible html is a nightmare to update.
What is the best set of HTML/CSS/Javascript/PHP libraries to achieve this? I have looked a YUI, MooTools, JQuery, and a bunch of others but none seem to have exactly what I need. I would prefer if I could just use PHP libraries, but good HTML/CSS/Javascript libraries would be fine too. The requirements are:
- Menus (Top Menu and Context Menu).
- Tree (preferably ajax, lazy loading, we have 5000 nodes in the tree and it takes a while to load now).
- Windows and Modal Dialog boxes.
- Splitter for the Grid and the TreeView.
Nice to haves
- Heirachacal grid.
- Tool tips.
Thanks in advance for the suggestions...