Ok i got it to work.. there a small changes i needed to make though..
on getnodes function the layout was not set:
$this->layout = 'ajax';

In the javascript from ext, 1 was never send back as the first
character at 0 but at 1.. so there was always an alert that the
article could not be saved (in FF 3 b3 atleast)

if (response.responseText.charAt(0) != 1){

To

if (response.responseText.charAt(1) != 1){

Also there are some things in the interface that could be akward to
the user.. like the + symbol on a node that contains no childeren.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to