The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Yahoo YUI! Treeview Menu for VBAdvanced Details »» | |||||||||||||||||||||||||
//--------------------------------------------------------------------
// YUI Yahoo Treemenu Module for VBA v3 RC2 // by ShawnC // http://www.shawnc.org //-------------------------------------------------------------------- //-------------------------------------------------------------------- //--> New Installation Instructions //-------------------------------------------------------------------- The files located in the Upload Directory need to be FTP Uploaded to your VBulletin Forum Directory. Click Overwrite All if it comes up will uploading Once uploaded, If you are using VBA v3 RC2 then you can Import the Module in this Directory to your VBA Modules and it will work. If you are Upgrading from a Previous version see next section //-------------------------------------------------------------------- //--> Upgrade Instructions //-------------------------------------------------------------------- Please Reupload all files into your Vbulletin Directory as I have changed the Javascript and compacted it with the Yahoo Javascript Compactor, Also All Files are hosted on your domain to speed matters up now. In Previous versions you had to Change the Header Template to Add the Javascript files, This has been automaticly done inside of the Plugin now so you will need to remove any manual Header File Changes. Delete the Old Module from VBA and ReImport the New Module to make sure all settings are overwrote properly. //-------------------------------------------------------------------- //--> Installation Instructions on older VBA //-------------------------------------------------------------------- Please read the Installation.txt file inside of the Package Follow Normal Installation Instructions by Uploading All Files. Create a new Module inside of VBA, Choose PHP Module(File) Change the following Settings File to Include --> treemenu.php Templates Used --> adv_portal_treemenu Use Module Wrapper Template --> Yes Make a New Template and Call it //-------------------------------------------------------------------- //--> adv_portal_treemenu //-------------------------------------------------------------------- <tr class="alt1" ><td class="yui-skin-sam"> <div id="treeDiv" style="visibility:hidden;"> $adv_portal_forumlist </div> <script type="text/javascript"> //<![CDATA[ var ultree; (function() { function treeInit() { ultree = new YAHOO.widget.TreeView("treeDiv"); ultree.setExpandAnim(YAHOO.widget.TVAnim.FADE_IN); ultree.setCollapseAnim(YAHOO.widget.TVAnim.FADE_OU T); ultree.readList(); ultree.subscribe("expand", function(node) { }); ultree.subscribe("collapse", function(node) { }); ultree.subscribe("labelClick", function(node) { }); ultree.draw(); fetch_object('treeDiv').style.visibility = 'visible'; } YAHOO.util.Event.addListener(window, "load", treeInit); })(); //]]> </script> </td></tr> //-------------------------------------------------------------------- //--> ChangeLog //-------------------------------------------------------------------- --> v1.00 --> First Version --> v1.01 --> Fixed Missing Animation Package - ragtek noticed thanks --> v1.10 --> Fixed minor things --> v1.20 --> Rewrite for VBA v3RC2 Module format --> v1.30 --> Added Automatic Template Edits, Compacted Javascript Includes, Added Hidden Startup, Re-Packaged for Out of the Box Operation Forum Paths have been added to Both Javascript and ForumDisplay.php so this will now work outside of your forum directory, Removed Ugly Navmarkers that i forgot to remove from the original code for this. //-------------------------------------------------------------------- //--> Demo Sites //-------------------------------------------------------------------- http://www.srl-forums.com --> Where this module was originally wrote for http://www.earthbeans.org --> Showing this module in a setting other then VBulletin ( MODx ) http://www.audiopoint.gr --> The Very Original Treemenu code written by Me for A Different JavaScript setup //-------------------------------------------------------------------- //--> Information About the Author //-------------------------------------------------------------------- I am a Freelance web Developer with Alot of exp in VBulletin modifications. I also run a blog about Web Development mostly using Yahoo, PHP and Linux Server stuff. If you Like this modication please make a donation as it would make you feel all warm and fuzzy inside :P And helps me support the idea of future free module releases. Support will be given to those that have Installed this modification only. Show Your Support
|
Comments |
#62
|
|||
|
|||
Quote:
|
#63
|
|||
|
|||
i'm working now on the problem with the hidden box until the content is ready
i think with this: http://developer.yahoo.com/yui/examp...nt-timing.html it shouldn't be a problem at momemt i have add this: style="visibility:hidden" id="treenavi" to my navi part and in the script i add this: fetch_object('treenavi').style.visibility = 'visible'; but it is still fired befor it is realy ready*g* |
#64
|
|||
|
|||
i've solved it
i changed the script to: Code:
var ultree; (function() { function treeInit() { ultree = new YAHOO.widget.TreeView("treeDiv"); ultree.setExpandAnim(YAHOO.widget.TVAnim.FADE_IN); ultree.setCollapseAnim(YAHOO.widget.TVAnim.FADE_OUT); ultree.readList(); ultree.subscribe("expand", function(node) { }); ultree.subscribe("collapse", function(node) { }); ultree.subscribe("labelClick", function(node) { }); ultree.draw(); fetch_object('treenavi').style.visibility = 'visible'; } YAHOO.util.Event.onDOMReady(treeInit); })(); Code:
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center" style="visibility:hidden" id="treenavi"> so now it have a id(needed for the fetch_object method and it is set visibility:hidden, so it is hidden until Code:
YAHOO.util.Event.onDOMReady(treeInit); and then i fire the init function, now the tree is "built" and visibility is set here's a video how it looks like: http://www.ragtek.org/tutorials/treemenu.htm |
#65
|
|||
|
|||
Quote:
Could you please share edited file? I really didn't know how edit file. I don't know about the code where including. I'm not a familliar. Thnaks, Best regards. |
#66
|
|||
|
|||
hi
sorry, no i cant because i'm using an other system(vbcms and not vbadvanced so i cant just export my) and i have not realy the time to make it but i'm sure dankness will update it soon |
#67
|
|||
|
|||
Oh, I see..
Thanks for your reply. Anyway, congratulation for your work!! |
#68
|
|||
|
|||
Quote:
Thanks! |
#69
|
|||
|
|||
in this version it is direct in the template and the modul
Code:
<script type="text/javascript"> //<![CDATA[ var ultree; (function() { function treeInit() { ultree = new YAHOO.widget.TreeView("treeDiv"); ultree.setExpandAnim(YAHOO.widget.TVAnim.FADE_IN); ultree.setCollapseAnim(YAHOO.widget.TVAnim.FADE_OUT); ultree.readList(); ultree.subscribe("expand", function(node) { }); ultree.subscribe("collapse", function(node) { }); ultree.subscribe("labelClick", function(node) { }); ultree.draw(); } YAHOO.util.Event.addListener(window, "load", treeInit); })(); //]]> </script> |
#70
|
|||
|
|||
I have this:
Quote:
|
#71
|
|||
|
|||
Sorry for the delays guys, I will be updating this thing hopefully by Monday, In the Update I will add Ragtek's idea to hide the Div until Javascript Creates it, and I will also be adding Options for Open/Close All to it I have already coded most of it but i just need to finish testing everything, Once again sorry for the delays but you have to understand I am a Freelance Web Developer and the only thing putting food in my stomache atm is my web work. So of course I have to put paying jobs way ahead of free mods like this. If you like this mod you guys are more then welcome to donate afew bucks to its development ( there is a nice option to do that right here thru vb.org ) But anyways I will have a updated version for everyone very soon.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|