<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Mifjs forum — Mif.Tree, Mif.Menu]]></title>
		<link>http://mifjs.net/forum/</link>
		<description><![CDATA[The most recent topics at Mifjs forum — Mif.Tree, Mif.Menu.]]></description>
		<lastBuildDate>Thu, 29 Sep 2011 14:29:03 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[How to embed Mif.Tree]]></title>
			<link>http://mifjs.net/forum/topic/258/new/posts/</link>
			<description><![CDATA[Hello,

I wanted to use Mif.Tree to create a tree view on a webpage. I wrote the following HTML doc:
[code]
<html>
<head>
<script type="text/javascript" src="libs/mootools-core-1.3.2-full-compat.js"></script>
<script type="text/javascript" src="libs/mif.tree-v1.2.6.4.js"></script>
<script type="text/javascript" src="tree.js"></script>
</head>
<body>
    <h1>Simple Tree example</h1>
    <div id="tree_container"></div>
</body>
</html>[/code]

But the only visible thing is the text "Simple Tree example" - nothing else. Even the examples doesn't work (also tested on a friends PC).
Can someone please help me with embedding Mif.Tree?

Thanks

IT]]></description>
			<author><![CDATA[dummy@example.com (Tigunn)]]></author>
			<pubDate>Thu, 29 Sep 2011 14:29:03 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/258/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Hide/Disable root element]]></title>
			<link>http://mifjs.net/forum/topic/265/new/posts/</link>
			<description><![CDATA[Ive been fiddling with the Mif.tree data structure. So far i can load any tree of data as long as it has a single root node. If I have two nodes in the javascript array, both as top level nodes, only the first node is shown. A small example:

Currently:
- Root
--- node 1
--- node 2
--- node 3 

Preferred:
- node 1
- node 2
- node 3

My question is, is there an elegant way to achieve the above preferred structure?

Thanks for the wonderful tree so far.]]></description>
			<author><![CDATA[dummy@example.com (Panoramix)]]></author>
			<pubDate>Sat, 06 Aug 2011 19:17:09 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/265/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Click handler on node]]></title>
			<link>http://mifjs.net/forum/topic/264/new/posts/</link>
			<description><![CDATA[Hi,

I just started using the Tree plugin, and very impressed with it so far!

I'm running into a problem with implementing the tree: how do I combine a click event with the drag and drop functionality?

I want to use a click handler on a tree node to open up a new tab in a tabpanel. I haven't found a specific 'click'-event, so instead I'm using the 'select'-event. However one of the problems with this is that it doesn't combine well with the drag and drop functionality: the select event fires straight after I start dragging (and fires each times the dragging node hovers over another node).

What's the preferred way to listen for an actual click (or double click) event on tree nodes?]]></description>
			<author><![CDATA[dummy@example.com (michiel)]]></author>
			<pubDate>Wed, 03 Aug 2011 12:41:52 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/264/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[load page after drag 'n drop a node]]></title>
			<link>http://mifjs.net/forum/topic/262/new/posts/</link>
			<description><![CDATA[hi,
i need to load a page after dnd 
		      new Mif.Tree.Drag(this, {
				beforeDrop: function(current, target, where){
					if(confirm('sposto "'+current.name+'" in "'+target.name+'"?')){
						this.drop(current,target);
                                                var req = new Request('index.php');
                                                req.load();
					}else{
						this.emptydrop();
					}
				}
			});

probably I haven't understood the mechanism of event, can you help me or give same links for examples?

thanks a lot

Umberto]]></description>
			<author><![CDATA[dummy@example.com (umberto)]]></author>
			<pubDate>Sun, 10 Jul 2011 18:09:26 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/262/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Expand tree branch]]></title>
			<link>http://mifjs.net/forum/topic/260/new/posts/</link>
			<description><![CDATA[hi, i'd wish to know if there's a way to expand the tree until a certain branch using a function.

i mean: i'd wish "find" a branch inside the tree, can i expand to the result?

ie clicking on a button and the tree expands until the branch i wanted


is that possible?]]></description>
			<author><![CDATA[dummy@example.com (moro)]]></author>
			<pubDate>Tue, 28 Jun 2011 04:19:39 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/260/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Custom project?]]></title>
			<link>http://mifjs.net/forum/topic/259/new/posts/</link>
			<description><![CDATA[i was wondering if your team is involved in custom works too. It's a project based on mootools, and is involving a category tree management. 

I would have contacted you per email but i can not find a contact form  on your website

Let me know (my email from profile is valid)

Regards
Andrei]]></description>
			<author><![CDATA[dummy@example.com (moro)]]></author>
			<pubDate>Mon, 27 Jun 2011 19:26:13 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/259/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[get partially checked with getChecked() ?]]></title>
			<link>http://mifjs.net/forum/topic/261/new/posts/</link>
			<description><![CDATA[Hi,
looking at the demo found here:

[url]http://mifjs.net/tree/Demos/index.html#CheckboxDeps[/url]

expand the node  "books" and select a child, then hit "get Checked" - it wont print out the partially selected parent.

Expand the node "node 1.6" and select the child "node 1.6.2" and hit "get Checked" and it WILL print out the parent.

Im only seeing the first behaviour in my setup, but I need the second!

My question is this: is there a way to report back ALL checked items, both partially checked and fully checked?

Thanks so much for a great class,
Jacob]]></description>
			<author><![CDATA[dummy@example.com (jboyo)]]></author>
			<pubDate>Fri, 24 Jun 2011 01:23:44 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/261/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[load only a branch at time]]></title>
			<link>http://mifjs.net/forum/topic/257/new/posts/</link>
			<description><![CDATA[hi, i have a very nested tree, and i'd wish to load only a branch at time.

how can i do that?]]></description>
			<author><![CDATA[dummy@example.com (moro)]]></author>
			<pubDate>Thu, 16 Jun 2011 10:57:30 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/257/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[DOM Tree example in Firefox]]></title>
			<link>http://mifjs.net/forum/topic/255/new/posts/</link>
			<description><![CDATA[Windows XP
Firefox 3.6.16

[url]http://mifjs.net/tree/Demos/index.html#HTMLTree[/url]

The " html" node can not be clicked sometimes.

错误： too much recursion
源文件：http://mifjs.net/tree/assets/scripts/mootools.js
行：1205]]></description>
			<author><![CDATA[dummy@example.com (mominet)]]></author>
			<pubDate>Tue, 03 May 2011 06:17:48 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/255/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[support mootools 1.3]]></title>
			<link>http://mifjs.net/forum/topic/239/new/posts/</link>
			<description><![CDATA[now mif.tree-v1.2.6.4 may not support mootools 1.3?]]></description>
			<author><![CDATA[dummy@example.com (Bloodsucker)]]></author>
			<pubDate>Fri, 22 Apr 2011 16:32:41 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/239/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[documentation not rendering]]></title>
			<link>http://mifjs.net/forum/topic/242/new/posts/</link>
			<description><![CDATA[I cant see any documentation in any browser (IE7+, Opera, Safari, Chrome, FF4, etc)
The first few charatcers of the page seem to be gibberish.
Then the page breaks.

Any idea how to just download the docs for offline usage?]]></description>
			<author><![CDATA[dummy@example.com (Bloodsucker)]]></author>
			<pubDate>Tue, 19 Apr 2011 18:38:04 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/242/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Please help with hasCheckbox property to ungrey and enable dynamically]]></title>
			<link>http://mifjs.net/forum/topic/237/new/posts/</link>
			<description><![CDATA[In my json declaration for these checkbox tree nodes I declared by default as "hasCheckbox" : false.  How do I programmatically based on met condition to enable the checkbox so that it's not greyed out.  I tried the below code but did NOT work:

Mif.id(nodeId).hasCheckbox = true; // didn't do anything, i.e. this did NOT redraw the node and still greyed out

then I tried the below and did NOT work or enabled, i.e. still greyed out:

var node = Mif.id("AFI"); 
node['hasCheckbox'] = true;
Mif.Tree.Draw.update(node);

Thank you.]]></description>
			<author><![CDATA[dummy@example.com (moro)]]></author>
			<pubDate>Mon, 04 Apr 2011 20:26:22 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/237/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[help with drop]]></title>
			<link>http://mifjs.net/forum/topic/238/new/posts/</link>
			<description><![CDATA[hello, 

i am dropping an element from a tree to another
both tree are structured in folders and file 

if i drag a file from a tree to another and the file is already in the folder that i want to drop it than the file will be two times in that folder.

all files in the tree are having data => array('id' => fileID)

so when i drag a file i want to search in the node where i want to drop it.i wanna see if the file is there.only if the folder does not have that file id should let me drop it.

can anybody help me?

please excuze my english.

thank you]]></description>
			<author><![CDATA[dummy@example.com (moro)]]></author>
			<pubDate>Mon, 04 Apr 2011 20:19:20 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/238/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Dynamic menu entries]]></title>
			<link>http://mifjs.net/forum/topic/240/new/posts/</link>
			<description><![CDATA[I have a Mif.Tree with folders and files, and use Mif.Menu to do some operations on these elements.
I need to do Rename and Remove for folders, and only Remove for files.

How can i tell Mif.Menu that if the node is type=='file', i don't want the Rename option to show up?
Is there a beforeSomething event, or how can i manipulate the entries in the menu?

Thanks!]]></description>
			<author><![CDATA[dummy@example.com (moro)]]></author>
			<pubDate>Mon, 04 Apr 2011 20:11:46 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/240/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Reload a tree]]></title>
			<link>http://mifjs.net/forum/topic/243/new/posts/</link>
			<description><![CDATA[Im pretty confused: I need to refresh a tree based on new data, so I thought I should just say

tree.load({"json": myDataIsHere})

but instead of reloading the tree, it just adds another one.

Am I missing something obvious?
Thanks,
J]]></description>
			<author><![CDATA[dummy@example.com (moro)]]></author>
			<pubDate>Mon, 04 Apr 2011 20:02:39 +0000</pubDate>
			<guid>http://mifjs.net/forum/topic/243/new/posts/</guid>
		</item>
	</channel>
</rss>

