<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Mifjs forum — Mif.Tree, Mif.Menu - MifTree and MifMenu integration]]></title>
		<link>http://mifjs.net/forum/topic/64/</link>
		<description><![CDATA[The most recent posts in MifTree and MifMenu integration.]]></description>
		<lastBuildDate>Tue, 06 Apr 2010 21:36:21 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/780/#p780</link>
			<description><![CDATA[Thanks, I have redo my code, and now it's ok.
i don't know why with all javascript in "source" folder .... I have the error, with only one "js" no problem.]]></description>
			<author><![CDATA[duduche1@club.fr (duduche1)]]></author>
			<pubDate>Tue, 06 Apr 2010 21:36:21 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/780/#p780</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/779/#p779</link>
			<description><![CDATA[[quote=Duduche1]Hello, I have a problem with the integration
...
My problem is when I do a rigth-click nearby the label/name of the tree, the menu is visible, if I click on the label/name, nothing to do

The code is ok with a old version of tree+menu, but with the last version, I have this problem.[/quote]
works for me [url]http://mifjs.net/misc/tree_menu/[/url]]]></description>
			<author><![CDATA[creavenmoro@gmail.com (moro)]]></author>
			<pubDate>Mon, 05 Apr 2010 15:47:49 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/779/#p779</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/778/#p778</link>
			<description><![CDATA[Hello, I have a problem with the integration

I have this definition of a menu :
[code]
    var testMenu = new Mif.Menu().load([
            {
                name: 'open',
                action: function()
                {
                    var current = this.treeItem;
                    if(!current) return;

                    alert('open : ' + current.id);
                }
            },
            {
                name: 'remove',
                disabled: true
            },
            {
                name: 'exit',
                id: 'exit'
            }
        ]);
[/code]
With this event on the tree (otree) : 
[code]
    otree.container.addEvent("contextmenu", function(event)
        {
            var node = otree.mouse.node;
            if(!node) return;

            testMenu.treeItem = node;
            testMenu.show(event);

            return false;
        });
[/code]
My problem is when I do a rigth-click nearby the label/name of the tree, the menu is visible, if I click on the label/name, nothing to do

The code is ok with a old version of tree+menu, but with the last version, I have this problem.]]></description>
			<author><![CDATA[duduche1@club.fr (Duduche1)]]></author>
			<pubDate>Sat, 03 Apr 2010 22:38:45 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/778/#p778</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/753/#p753</link>
			<description><![CDATA[[url=http://mifjs.net/misc/Mif.TreeMenu/]Mif.Menu 1.2 and Mif.Tree 1.2.6 demo[/url]]]></description>
			<author><![CDATA[creavenmoro@gmail.com (moro)]]></author>
			<pubDate>Sun, 14 Feb 2010 19:42:22 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/753/#p753</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/740/#p740</link>
			<description><![CDATA[To add/delete nodes with Mif.Menu only do the following:
[code]
  var testMenu=new Mif.Menu({
    list: {
      items: [
      {
        name: 'Add node here',
        onAction: function() {
          var current = this.menu.treeItem;
              if(!current) return;
              tree.add({
                property: {
              name: "testnode"
            }
          }, current, 'inside');
        }
      },
      {
        name: 'Drop this node',
        onAction: function() {
          var current = this.menu.treeItem;
          if (!current) return;
          current.remove();
        }
      }
    ]
  }
});
            
  tree.container.addEvent('contextmenu', function(event){
    var node=tree.mouse.node;
    if(!node) return;
    testMenu.show(event);
    testMenu.treeItem=tree.mouse.node;
    return false;
  });
[/code]]]></description>
			<author><![CDATA[dummy@example.com (jan)]]></author>
			<pubDate>Mon, 25 Jan 2010 21:11:33 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/740/#p740</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/711/#p711</link>
			<description><![CDATA[Mif.Menu [url=http://github.com/creaven/mifmenu]under development[/url]. If you use old[color=#aaaaaa](because new not exist yet)[/color] menu version all old code will work, because nothing changed :-)]]></description>
			<author><![CDATA[creavenmoro@gmail.com (moro)]]></author>
			<pubDate>Fri, 22 Jan 2010 21:15:40 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/711/#p711</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/710/#p710</link>
			<description><![CDATA[Hi moro,
I've read that Mif.Menu is going to be rewritten, is that already done ? Or is the way of integrating MifTree and MifMenu you provided in 2008 still valid ?
Thanks in advance,
Jan]]></description>
			<author><![CDATA[dummy@example.com (jan)]]></author>
			<pubDate>Fri, 22 Jan 2010 19:03:12 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/710/#p710</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/239/#p239</link>
			<description><![CDATA[this demo 1.2.0]]></description>
			<author><![CDATA[creavenmoro@gmail.com (moro)]]></author>
			<pubDate>Thu, 04 Dec 2008 14:44:20 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/239/#p239</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/238/#p238</link>
			<description><![CDATA[good]]></description>
			<author><![CDATA[creavenmoro@gmail.com (moro)]]></author>
			<pubDate>Thu, 04 Dec 2008 14:43:35 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/238/#p238</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/237/#p237</link>
			<description><![CDATA[It works ... nice !
Thank you]]></description>
			<author><![CDATA[dummy@example.com (scramatte)]]></author>
			<pubDate>Thu, 04 Dec 2008 14:42:55 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/237/#p237</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/236/#p236</link>
			<description><![CDATA[i'm install ff3.0.4 pc, works for me.

alt+left click - temporal fix for opera, because it's don't support contextmenu event

i don't know how contextmenu event should work on mac os]]></description>
			<author><![CDATA[creavenmoro@gmail.com (moro)]]></author>
			<pubDate>Thu, 04 Dec 2008 14:39:48 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/236/#p236</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/235/#p235</link>
			<description><![CDATA[On you must do   CTRL + Left click  to fire contextmenu event ...
I've just discovered it !...

On windows it works with right button

Do this demo use mootools 1.2.1 ?]]></description>
			<author><![CDATA[dummy@example.com (scramatte)]]></author>
			<pubDate>Thu, 04 Dec 2008 14:34:35 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/235/#p235</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/234/#p234</link>
			<description><![CDATA[I'm running Apple Mac OS X 10.5.5  with latest Firefox ...
I can't open context menu ... neither right or left click  doens't works ...]]></description>
			<author><![CDATA[dummy@example.com (scramatte)]]></author>
			<pubDate>Thu, 04 Dec 2008 14:28:34 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/234/#p234</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/233/#p233</link>
			<description><![CDATA[all components? u include Mif.Container?
u download this demo [url=http://mifjs.net/misc/treemenu/mif_tree_menu.rar]archive[/url], it's work?]]></description>
			<author><![CDATA[creavenmoro@gmail.com (moro)]]></author>
			<pubDate>Thu, 04 Dec 2008 14:21:01 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/233/#p233</guid>
		</item>
		<item>
			<title><![CDATA[Re: MifTree and MifMenu integration]]></title>
			<link>http://mifjs.net/forum/post/232/#p232</link>
			<description><![CDATA[I'm running Mootools 1.2.1  
I've download Mif.Menu from your builder]]></description>
			<author><![CDATA[dummy@example.com (scramatte)]]></author>
			<pubDate>Thu, 04 Dec 2008 14:18:30 +0000</pubDate>
			<guid>http://mifjs.net/forum/post/232/#p232</guid>
		</item>
	</channel>
</rss>

