Hi, I am migrating from 1.2 to cakephp 1.3 and am trying to switch to the new JsHelper (engine JQuery)
anybody an idea how to easily replace the deprecated $ajax->observeField with the new $js-> functionality ? e.g. for the example in http://book.cakephp.org/view/630/observeField <?php echo $form->create( 'Post' ); ?> <?php $titles = array( 1 => 'Tom', 2 => 'Dick', 3 => 'Harry' ); ?> <?php echo $form->input( 'title', array( 'options' => $titles ) ) ?> </form> <?php echo $ajax->observeField( 'PostTitle', array( 'url' => array( 'action' => 'edit' ), 'frequency' => 0.2, ) ); ?> Thanks Johannes Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] 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
