Re: I am using jQuery in my form BUT it relies on ProtoType to work???

2011-06-15 Thread Shaz
Use pure javascript vs the JS helper for jQuery - should sort it. On Jun 9, 8:48 am, OldWest wrote: > I could be missing something severely here, but this is just not adding up. > > I built an ajax form which is working perfectly fine with ProtoType and > Scriptaculous. > >

I am using jQuery in my form BUT it relies on ProtoType to work???

2011-06-08 Thread OldWest
I could be missing something severely here, but this is just not adding up. I built an ajax form which is working perfectly fine with ProtoType and Scriptaculous. I am migrating to Jquery, and so I added the jquery libraries etc.. Below is my $ajax submit.. *NOTE the jQuery coded loading and

Re: How do I get prototype to

2011-05-31 Thread dreamingmind
What cake will do for you is help you keep your javascript out of your pages (or organized in your pages). It gives you the script() method in the Html Helper to load javascript files. And it gives you the buffer() and write() methods in the Js Helper to collect javascript code and output it all at

How do I get prototype to

2011-05-31 Thread barricades
Hi I've a search page which allows users to search through a table of charities. Each charity has one or more tags attached to it. As a search alternative I'd like a list of the tags (there are only 20 or so) with a checkbox for each where if someone checks one or more boxes then only the charitie

Tooltip with Prototype

2010-09-23 Thread Mariano C.
there's a way (helpers or just howto) to use prototype based tooltip inside my page? Everything i've found is out of date Regards Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message becau

Re: Combine JS, Jquery and Prototype + Scriptaculous on views/layout/default.ctp

2010-07-09 Thread Miles J
gt; > > I tried to add first two js script > > > echo $html->script('prototype'); > > echo $html->script('scriptaculous'); > > > and created my app/controller/ and views on a 1.3 framework. > > > And then, I read on the manual ab

Re: Combine JS, Jquery and Prototype + Scriptaculous on views/layout/default.ctp

2010-07-09 Thread kjc
Maybe You have to try this: http://api.jquery.com/jQuery.noConflict/ On 9 Lip, 06:51, Louie Miranda wrote: > I tried to add first two js script > > echo $html->script('prototype'); > echo $html->script('scriptaculous'); > > and created my app/contr

Combine JS, Jquery and Prototype + Scriptaculous on views/layout/default.ctp

2010-07-08 Thread Louie Miranda
I tried to add first two js script echo $html->script('prototype'); echo $html->script('scriptaculous'); and created my app/controller/ and views on a 1.3 framework. And then, I read on the manual about ajax pagination on 1.3. I tried to add.. echo $html->script(&

Re: Cannot include Prototype

2010-06-17 Thread cricket
On Jun 16, 5:43 pm, Joakim wrote: > Hi, > > I am struggeling with including the prototype js library. > > When i do this in my view add.ctp: > link('prototype'); ?> > link('scriptaculous'); ?> > > I get this error returned in the js files: >

Re: Cannot include Prototype

2010-06-17 Thread Dilip Godhani
n 17, 2010 at 3:13 AM, Joakim wrote: > Hi, > > I am struggeling with including the prototype js library. > > When i do this in my view add.ctp: > link('prototype'); ?> > link('scriptaculous'); ?> > > I get this error returned in the js files: > Miss

Cannot include Prototype

2010-06-17 Thread Joakim
Hi, I am struggeling with including the prototype js library. When i do this in my view add.ctp: link('prototype'); ?> link('scriptaculous'); ?> I get this error returned in the js files: Missing Controller JsController could not be found. Create the c

Cake Ajax+prototype file upload

2010-04-18 Thread Dmitry Shevchenko
Hi! Does anyone found some component/helper which get ability to Ajax file upload? I have tried to use solution described here: http://bakery.cakephp.org/articles/view/comfortable-ajaxuploads-with-cakephp But seems that it didn't work now. Also, I have read http://bakery.cakephp.org/articles/vi

Using prototype & xstandard with CakePHP

2010-01-08 Thread WhyNotSmile
grab a copy for yourself". I have no idea whether I link my webpages to prototype.js - I do whatever cakePHP does by default! I went to the prototype site, but I have no idea what I'm meant to do with the code if I download it! Where do I put it? Any help is appreciated. I'd also apprecia

Re: Problem Prototype / jQuery

2009-12-27 Thread robustsolution
the order I use is 1)prototype 2)scriptaculous 3)jquery then in the first line of the body section I use $j = jQuery.noConflict(); and It works... so for non jQuery plugins I use either the $j keyword or the jQuery keyword for jQuery plugins you may use the the $ keyword as it is encasulated

Re: Problem Prototype / jQuery

2009-12-27 Thread Dr. Loboto
Ask on JavaScript forums. It is not Cake-related problem. On Dec 26, 12:58 pm, thomaus wrote: > Hi, > > I tried it this way: > >                 echo $javascript->link('/js/scriptaculous-js-1.8.3/lib/prototype'); >        echo $javascript->link('/js/scri

Re: Problem Prototype / jQuery

2009-12-25 Thread Dr. Loboto
jQuery.noConflict() must be called immediately after initial jQuery include. On Dec 24, 11:08 pm, thomaus wrote: > Hi there, > > I have an issue using both Prototype and jQuery in my app. > > Here is my JS includes in my head folder: > >                 echo $javascript->

Problem Prototype / jQuery

2009-12-24 Thread thomaus
Hi there, I have an issue using both Prototype and jQuery in my app. Here is my JS includes in my head folder: link('/js/scriptaculous-js-1.8.3/lib/prototype'); echo $javascript->link('/js/scriptaculous-js-1.8.3/src/ scriptaculous'); // jQuery

Re: star rating system implementation using PROTOTYPE + AJAX.

2009-10-31 Thread armen
I'm having the same problem, as much as i know you have to use the cakephp ajax helper but havn't found out how to retrieve the data in a function. -Armen On Oct 31, 8:58 am, BeerMan wrote: > I'm trying to use the starbox star rating system in my page. > As the tutorial on the website suggested

star rating system implementation using PROTOTYPE + AJAX.

2009-10-31 Thread BeerMan
I'm trying to use the starbox star rating system in my page. As the tutorial on the website suggested I used the saveStar function to call a function in one of my controllers. the controller name is comments and the function name is addRate. the code I have below doesnt work because it is not acc

Re: prototype

2009-08-31 Thread Robert Popplewell
Might be worth checking this link out http://www.jamesfairhurst.co.uk/posts/view/compressing_jquery_javascript_with_php/ 2009/8/31 Dr. Loboto > > Or place prototype and scriptaculous back into header and deal with > load time by cache or do not use ajax helper and write your own >

Re: prototype

2009-08-31 Thread Dr. Loboto
Or place prototype and scriptaculous back into header and deal with load time by cache or do not use ajax helper and write your own javascript code that can live in such conditions. On Aug 31, 8:00 pm, persianshadow wrote: > hi > > i using prototype and scriptaculous in my project

prototype

2009-08-31 Thread persianshadow
hi i using prototype and scriptaculous in my project but these frameworks are heavy size and final pages load very slow , i searching for find solution for this problem , i want put these framework in bottom of my layout (near close body tag) but after this work , ajax method and

Prototype include in default layout

2009-05-14 Thread Cjo
Hi guys, Well I have been trying to implement the Ajax Paging in my Users list and for that I have gone through the steps provided in bakery and it worked. For this I have included the prototype file using echo $javascript->link(array('prototype')); in the index.ctp of the User

Scaffolding :: Select Box Relationship :: Issues :: (for prototype app)

2009-05-04 Thread programguru
3A%3A-Select-Box-Relationship-%3A%3A-Issues-%3A%3A-%28for-prototype-app%29-tp23380350p23380350.html Sent from the CakePHP mailing list archive at Nabble.com. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP&

Re: Accordion not working for prototype

2009-03-09 Thread Stu
Ummm, looking through your code I've noticed a random "" next to your "effects.js" load. Not sure if it might mess up something. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group,

Accordion not working for prototype

2009-03-09 Thread mcway_web_des...@cox.net
I am trying to implement the accordion feature written for prototype and scriptaculous...http://www.stickmanlabs.com/accordion/ However, i cannot get this even the examples, which are very straight forward, to work properly with CakePHP...there was a similar topic posted a while back that also

Re: CakePHP + Ajax/JS(Prototype/JQuery) creating fields on the fly and Multiple Picture Uploader

2009-02-18 Thread netors
exo_duz, I have something similar that may be useful to you, its not the best way to do it but it gets the job done. First, you need prototype and scriptaculous on your webroot/js/ folder on your Controller: class EventsController extends AppController { var $name='E

CakePHP + Ajax/JS(Prototype/JQuery) creating fields on the fly and Multiple Picture Uploader

2009-02-05 Thread exo_duz
Hi all, Just some quick questions and hoping to get pointed in the right direction. I have an events table which has many event_details and pictures. events --hasMany--> event_details events --hasMany--> pictures A couple of questions firstly with the event_details. Is there a way to create the

Re: Prototype AND extJS?

2009-02-03 Thread nige.ani...@googlemail.com
ExtJs uses the concept of foundation libraries to provide things like DOM manipulation, event handling, animation etc. Its class hierarchy is built on a foundation-agnostic adapter layer. You can use either ext-base as the foundation (A pure extJS foundation library), or Prototype, or jQuery

Re: Prototype AND extJS?

2009-02-03 Thread Martin Westin
I have only had a shallow look at ExtJS but as I see it: Prototype is a javascript framework with ajax ExtJS is an Ajax and GUI framework built in javascript That is: Prototype is used to put some nice ajax on your web-app and ExtJS is something you build your app in from the start. Using ExtJS

Re: Prototype AND extJS?

2009-02-02 Thread Miles J
, but the extJS-Framework has some > function which are not provided by prototype, so is there any reason > why not to use both at the same time (beside a bit more download at > the first page)? > > thx > Aurelius --~--~-~--~~~---~--~~ You received t

Prototype AND extJS?

2009-02-02 Thread Aurelius
Hi! I really like the Ajax-Helper, but the extJS-Framework has some function which are not provided by prototype, so is there any reason why not to use both at the same time (beside a bit more download at the first page)? thx Aurelius --~--~-~--~~~---~--~~ You

Re: Error when including prototype and scriptaculous in layout template

2009-01-22 Thread mrg
und, dragdrop and others) > > > What is the solution for this trouble? > > I have exactly the same problem. > > In my view this generated the error: > > link('prototype',false); >    echo $javascript->link('scriptaculous',false); ?> > >

Re: Error when including prototype and scriptaculous in layout template

2009-01-21 Thread mrg
ike > sound, dragdrop and others) > > What is the solution for this trouble? I have exactly the same problem. In my view this generated the error: link('prototype',false); echo $javascript->link('scriptaculous',false); ?> But this was OK: link('prot

Re: cakephp with jquery not with prototype

2008-12-04 Thread Josey
No, unfortunately it is written for prototype On Dec 4, 4:59 am, Dérico Filho <[EMAIL PROTECTED]> wrote: > Is Cake's Ajax Helper compatible with JQuery? > > On Dec 3, 6:09 pm, "Sam Sherlock" <[EMAIL PROTECTED]> wrote: > > > 1) enable the javascrip

Re: cakephp with jquery not with prototype

2008-12-04 Thread Dérico Filho
irectory within js called plugins > > There no need for a jquery helper > > 2008/12/3 ridwan arifandi <[EMAIL PROTECTED]> > > > > > i'm a newbie in cakephp programming. > > > cakephp uses prototype as ajax framework, but i dislike prototype just > > love

Re: cakephp with jquery not with prototype

2008-12-03 Thread Sam Sherlock
n')) note that you don't put file suffixes on and that in the above example jquery-validation is in side a directory within js called plugins There no need for a jquery helper 2008/12/3 ridwan arifandi <[EMAIL PROTECTED]> > > i'm a newbie in cakephp programming

cakephp with jquery not with prototype

2008-12-03 Thread ridwan arifandi
i'm a newbie in cakephp programming. cakephp uses prototype as ajax framework, but i dislike prototype just love jquery. i found lot of posts that discusing about cakephp with jquery, but none of them can satisfy me and all of them cannot work when i use them. before using cakephp, i

Re: jquery && prototype

2008-11-27 Thread Kyo
Hi, Diego. You need to call jQuery.noConflict() so that jQuery wouldn't conflict with the $ object of Prototype. I don't recommend using several JavaScript frameworks together since it will increase loading time of pages and things would be more complicated. AjaxHelper only generates

Re: jquery && prototype

2008-11-27 Thread David C. Zentgraf
page, I wanted to use > prototype > and $ ajax-> form (), with the surprising finding that it gives of > errors I > read it there or by using jQuery or prototype, can not be loaded > together. > Is this so? > > How can I send

jquery && prototype

2008-11-27 Thread Diego Villar
boys, I am with a problem In one of my pages I use jQuery to launch windows thickbox, now I am on the need to send a form via ajax on that same page, I wanted to use prototype and $ ajax-> form (), with the surprising finding that it gives of errors I read it there or by using jQuery

Re: Whats up with prototype and Cake 1.2?

2008-11-09 Thread Brett Wilton
You can add an app_controller.php file to your app directory and add the helpers there. Brett Wilton http://wiltonsoftware.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this

Re: Whats up with prototype and Cake 1.2?

2008-11-07 Thread rgreenphotodesign
Is it correct to put the Javascript helper in page_controllers.php? It seems that's the only way to get the helper loaded and available to home.ctp and default.ctp layout. On Nov 7, 10:24 am, Bernardo Vieira <[EMAIL PROTECTED]> wrote: > Do you have the Javascript helper on whatever controller yo

Re: Whats up with prototype and Cake 1.2?

2008-11-07 Thread Bernardo Vieira
array > FormHelper::$fieldset = array > FormHelper::$__options = array > FormHelper::$fields = array > FormHelper::$requestType = NULL > FormHelper::$base = "/gradebook" > FormHelper::$webroot = "/gradebook/" > FormHelper::$themeWeb = NULL > FormHel

Whats up with prototype and Cake 1.2?

2008-11-07 Thread Ed Drain
FormHelper::$tags = array FormHelper::$__tainted = NULL FormHelper::$__cleaned = NULL FormHelper::$_log = NULL FormHelper::$Html = HtmlHelper object $session= SessionHelper SessionHelper::$helpers = NULL SessionHelper::$__active = true SessionHelper:

Re: Using JQuery and Prototype in same application

2008-11-04 Thread mark_story
d now! :) There is support for jQuery, Prototype, mootools, and CSS only. And I think joel perras is working on a YUI compatible toolbar script. -Mark On Nov 3, 11:10 pm, si-mon <[EMAIL PROTECTED]> wrote: > Actually, we are a group working on a single project, and each one > ha

Re: Using JQuery and Prototype in same application

2008-11-04 Thread Giaco
L PROTECTED]> wrote: > > > > On Mon, Nov 3, 2008 at 11:48 AM, mark_story <[EMAIL PROTECTED]> wrote: > > > > > A better question is why? > > > > Maybe if you have an app that uses prototype but one wants to play > > > with your amazing debug kit

Re: Using JQuery and Prototype in same application

2008-11-03 Thread si-mon
PROTECTED]> wrote: > > > On Mon, Nov 3, 2008 at 11:48 AM, mark_story <[EMAIL PROTECTED]> wrote: > > > > A better question is why? > > > Maybe if you have an app that uses prototype but one wants to play > > with your amazing debug kit ;) > &g

Re: Using JQuery and Prototype in same application

2008-11-03 Thread monmonja
AIL PROTECTED]> wrote: > On Mon, Nov 3, 2008 at 11:48 AM, mark_story <[EMAIL PROTECTED]> wrote: > > > A better question is why? > > Maybe if you have an app that uses prototype but one wants to play > with your amazing debug kit ;) > > > > > -Mark > > >

Re: Using JQuery and Prototype in same application

2008-11-03 Thread Samuel DeVore
On Mon, Nov 3, 2008 at 11:48 AM, mark_story <[EMAIL PROTECTED]> wrote: > > A better question is why? Maybe if you have an app that uses prototype but one wants to play with your amazing debug kit ;) > > -Mark > > On Nov 2, 11:55 pm, si-mon <[EMAIL PROTECTED]> wro

Re: Using JQuery and Prototype in same application

2008-11-03 Thread mark_story
A better question is why? -Mark On Nov 2, 11:55 pm, si-mon <[EMAIL PROTECTED]> wrote: > Hi all, > Is there any problem in using both JQuery and Prototype in the same > application? --~--~-~--~~~---~--~~ You received this message because you are su

Re: Using JQuery and Prototype in same application

2008-11-03 Thread monmonja
Nope, try to use both and insert jQuery.noConflict() documentation at http://docs.jquery.com/Core/jQuery.noConflict Monmonja http://monmonja.com/blog/ On Nov 3, 12:55 pm, si-mon <[EMAIL PROTECTED]> wrote: > Hi all, > Is there any problem in using both JQuery and Prototype

Using JQuery and Prototype in same application

2008-11-02 Thread si-mon
Hi all, Is there any problem in using both JQuery and Prototype in the same application? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email t

Ajax Upload Using Prototype in CakePHP

2008-10-28 Thread Yodiaditya
i'm just asking, there are somebody made ajax upload using prototype in cakePHP? i'm confusing about iframe in ajax upload, especially in CakePHP. i see somebody post that http://tomas.epineer.se have good example using prototype in Ajax Upload. But, that site get down right now

Error when including prototype and scriptaculous in layout template

2008-10-11 Thread ORCC
I have a layout template that includes the prototype and scriptaculous scripts that are placed in webroot/js directory. The template looks like: http://www.w3.org/1999/xhtml";> charset(); ?> meta('icon');

Re: Prototype and Scriptaculous Effects Help ma please

2008-09-02 Thread randalle2
thnks a lot... On Jul 9, 12:06 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > You don't need to build your own library. You use an existing library > like prototype for all of the nice functions and features it has. You > build your own behaviours for your c

Re: Prototype

2008-07-14 Thread [EMAIL PROTECTED]
EMAIL PROTECTED]> wrote: > It ought to. What response are you getting? > > On Jul 14, 1:37 pm, "[EMAIL PROTECTED]" > > > > <[EMAIL PROTECTED]> wrote: > > Hi all. > > > I'm trying to make a simple AJAX call to a controller action using > &g

Re: Prototype

2008-07-14 Thread schneimi
ED]> wrote: > Hi all. > > I'm trying to make a simple AJAX call to a controller action using > prototype. I'm not using any of the AJAX helper functions because I > think any of them can do what I'm trying to do wich is a simple call. > My problem is to know what url

Re: Prototype

2008-07-14 Thread DaveMahon
It ought to. What response are you getting? On Jul 14, 1:37 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi all. > > I'm trying to make a simple AJAX call to a controller action using > prototype. I'm not using any of the AJAX helper functions bec

Prototype

2008-07-14 Thread [EMAIL PROTECTED]
Hi all. I'm trying to make a simple AJAX call to a controller action using prototype. I'm not using any of the AJAX helper functions because I think any of them can do what I'm trying to do wich is a simple call. My problem is to know what url I have to pass in the url of t

Re: Prototype and Scriptaculous Effects Help ma please

2008-07-09 Thread randalle2
Thanks a lot martin... I'm on the way on my web development right now... Maybe your right, I'll stick to prototype... I'm still finding a way on how to fix my nested tab... it doesn't work well... it's been few weeks but i

Re: Prototype and Scriptaculous Effects Help ma please

2008-07-09 Thread [EMAIL PROTECTED]
You don't need to build your own library. You use an existing library like prototype for all of the nice functions and features it has. You build your own behaviours for your current site of application. No library makes buttons dance like crazy around the screen but they do provide you with

Re: Prototype and Scriptaculous Effects Help ma please

2008-07-08 Thread randalle2
thank you very much for the reply.. in short, it much better if im goin to build my on js library or just an extension? coz for now im using the prototype/scriptaculous library for now... the problem there if im going to used jquery same time it goes out with a problem... correct me if im wrong

Re: Prototype and Scriptaculous Effects Help ma please

2008-07-08 Thread [EMAIL PROTECTED]
Hi regz, The frontpage of cakephp.org uses jquery javascript behaviours. You can achieve the same results using prototype though. The dynamic tabs are all javascript and have very little (if anything) to do with cakephp. The helpers for javascript (and ajax) are a good help but they have their

Prototype and Scriptaculous Effects Help ma please

2008-07-08 Thread randalle2
I try to build my site. I'm a newbie... I used 1.1..version of cakephp.. I want to use prototype and scriptaculous effects.. more or less like frontpage you have seen in CAKEPHP. It can be navigate by next or prev buttons or by clicking the tab.. can anyone help me please than

Re: JS and CSS selectors - WAS: How can I user jQuery insted of prototype?

2008-04-11 Thread [EMAIL PROTECTED]
Sorry Langdon, I tend to loose track of older topics when I am away for a few days. I just thought I would confirm what others have suggested. I do not use behavior. I used to use it along with prototype but with jquery it is not needed anymore. I include a file I call behaviors.js which

Re: How can I user jQuery insted of prototype?

2008-04-10 Thread Freshow
Thanks for all replay , I use it directly by reference jquery js library in my layout On 4月3日, 上午11时21分, dyh1919 <[EMAIL PROTECTED]> wrote: > I love jQuery more than prototype,but,what i should do before i use it > in CakePHP? --~--~-~--~~~---~--~~

Re: How can I user jQuery insted of prototype?

2008-04-06 Thread dzojntywole!
check out Felix Geisendörfer presentation jQuery&cakePHP to world domination.. there are some very useful tips. Bart On Apr 3, 1:21 pm, dyh1919 <[EMAIL PROTECTED]> wrote: > I love jQuery more than prototype,but,what i should do before i use it

Re: JS and CSS selectors - WAS: How can I user jQuery insted of prototype?

2008-04-05 Thread Langdon Stevenson
Thanks for the clarification b_logica Regards, Langdon b logica wrote: > Yes, that's preceisely the way jQuery works--using CSS selectors. > > On Fri, Apr 4, 2008 at 11:09 PM, Langdon Stevenson > <[EMAIL PROTECTED]> wrote: >> Hi Sam >> >> This isn't an issue of understanding jquery, I was ju

Re: JS and CSS selectors - WAS: How can I user jQuery insted of prototype?

2008-04-05 Thread b logica
Yes, that's preceisely the way jQuery works--using CSS selectors. On Fri, Apr 4, 2008 at 11:09 PM, Langdon Stevenson <[EMAIL PROTECTED]> wrote: > > Hi Sam > > This isn't an issue of understanding jquery, I was just curious to know > how Martin applies his javascript dynamically via css selecto

Re: JS and CSS selectors - WAS: How can I user jQuery insted of prototype?

2008-04-04 Thread Langdon Stevenson
Hi Sam This isn't an issue of understanding jquery, I was just curious to know how Martin applies his javascript dynamically via css selectors. A quick Google search turned up Behaviour as one way of doing this. At first glance it appears to be a library whose purpose is allowing JS to be a

Re: JS and CSS selectors - WAS: How can I user jQuery insted of prototype?

2008-04-04 Thread b logica
Behaviour has similar functionality to jQuery. I'm not sure there'd be any point in using them together. On Thu, Apr 3, 2008 at 10:23 PM, Langdon Stevenson <[EMAIL PROTECTED]> wrote: > > Hi Martin > > > > I do not use any helper for jquery, myself. Since all my javascript, > > including ajax,

Re: Newbie Regarding Prototype Validation

2008-04-04 Thread meAgain
thing something" or it acts upon events . On Apr 4, 9:26 am, Joel <[EMAIL PROTECTED]> wrote: > 1) You should include the prototype/scriptaculous libraries _before_ > any additional scripts that require these libraries. > 2)I believe the class is "required" and not &q

Re: Newbie Regarding Prototype Validation

2008-04-04 Thread meAgain
Can any one tell me the steps i should follow to run prototype validation. using: http://tetlaw.id.au/view/javascript/really-easy-field-validation Thank you On Apr 4, 9:26 am, Joel <[EMAIL PROTECTED]> wrote: > 1) You should include the prototype/scriptaculous libraries _before_ > an

Re: Newbie Regarding Prototype Validation

2008-04-03 Thread Joel
1) You should include the prototype/scriptaculous libraries _before_ any additional scripts that require these libraries. 2)I believe the class is "required" and not "required1". 3)Also, what is in the formCallback() javascript method? -Joel. On Apr 4, 1:20 am, meAgain <[

Newbie Regarding Prototype Validation

2008-04-03 Thread meAgain
Hi All, I need help in running prototype in using the validation found on : http://tetlaw.id.au/view/javascript/really-easy-field-validation i have included in my layout all the files I need : link('validation/scriptaculous/ validation.js'); ?> link('validation/scriptaculo

Re: JS and CSS selectors - WAS: How can I user jQuery insted of prototype?

2008-04-03 Thread Sam Sherlock
Have you tried asking the jquery list for help? Once cake have rendered code to the view. jquery can take over from there, then you just need to adapt any jquery code you learning from to work with cake (change urls to controller/action/view) mail me off list if you want some more indepth info (

Re: JS and CSS selectors - WAS: How can I user jQuery insted of prototype?

2008-04-03 Thread Langdon Stevenson
Hi Sam Thanks for the reply, but I am not clear exactly what you are talking about here. I was asking specifically about how Martin attaches Javascript to CSS selectors. Is this what you are referring to? Or just to jquery use in general? Regards, Langdon Sam Sherlock wrote: > I have be

Re: JS and CSS selectors - WAS: How can I user jQuery insted of prototype?

2008-04-03 Thread Sam Sherlock
I have been using jQuery and cake for sometime. I never did make headway with proto etc for example $(document).ready(function() { // fired when document is ready $(".edit").editable("/post/update/"); // attaches editable to all edit class elements }); You don't need a cake helper

JS and CSS selectors - WAS: How can I user jQuery insted of prototype?

2008-04-03 Thread Langdon Stevenson
Hi Martin > I do not use any helper for jquery, myself. Since all my javascript, > including ajax, is applied dynamically to css selectors I have no real > need for a helper. Do you use the Behaviour js library for this? http://www.bennolan.com/behaviour/ Or something else? Regards, Langd

Re: How can I user jQuery insted of prototype?

2008-04-03 Thread Stephen Orr
use any helper for jquery, myself. Since all my javascript, > including ajax, is applied dynamically to css selectors I have no real > need for a helper. > > On Apr 3, 5:21 am, dyh1919 <[EMAIL PROTECTED]> wrote: > > > I love jQue

Re: How can I user jQuery insted of prototype?

2008-04-03 Thread [EMAIL PROTECTED]
, is applied dynamically to css selectors I have no real need for a helper. On Apr 3, 5:21 am, dyh1919 <[EMAIL PROTECTED]> wrote: > I love jQuery more than prototype,but,what i should do before i use it > in CakePHP? --~--~-~--~~~---~--~~ You received

Re: How can I user jQuery insted of prototype?

2008-04-03 Thread Chris Hartjes
On Wed, Apr 2, 2008 at 11:21 PM, dyh1919 <[EMAIL PROTECTED]> wrote: > > I love jQuery more than prototype,but,what i should do before i use it > in CakePHP? > Nothing. There's no official jQuery helper for CakePHP, so you'll have to write everything by ha

How can I user jQuery insted of prototype?

2008-04-03 Thread dyh1919
I love jQuery more than prototype,but,what i should do before i use it in CakePHP? --~--~-~--~~~---~--~~ 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@googlegro

Re: Prototype/Scriptaculous causes background-color problem

2008-03-02 Thread Bart
HTML page--no PHP, no includes, etc.--and check the page in Safari. > That is, serve the page from a non-Cake virtual host. If you still see > the problem ask on a list dedicated to Prototype or Scriptaculous. > Safari's a great browser but some versions are maddeningly buggy. --~--~--

RE: Is JQuery replacing Prototype in cake?

2008-02-17 Thread Mariano Iglesias
Yes, it is nate. And regarding Aaron's comment nate also tells that eventhough jQuery will eventually be the default, support will be given to both jQuery & prototype + scriptaculous. So not to worry. -MI ---

Re: Is JQuery replacing Prototype in cake?

2008-02-17 Thread Aaron Shafovaloff
Both jQuery and Prototype are wonderful frameworks. I'd hope arrangements would be made for developers who use either. On Feb 17, 1:52 pm, MattC <[EMAIL PROTECTED]> wrote: > To make sure I wasn't misrepresenting what was said I re-listened to > the podcast.  I'm not s

Re: Is JQuery replacing Prototype in cake?

2008-02-17 Thread MattC
To make sure I wasn't misrepresenting what was said I re-listened to the podcast. I'm not sure who is talking (Mariano says it's Nate in one of the comments above), but it's at about the 30:35 mark. -Matt www.pseudocoder.com On Feb 17, 2:08 pm, "Chris Hartjes" <[EMAIL PROTECTED]> wrote: > On F

Re: Is JQuery replacing Prototype in cake?

2008-02-17 Thread Chris Hartjes
On Feb 17, 2008 2:07 PM, MattC <[EMAIL PROTECTED]> wrote: > > That's my blog...I heard it on the CakeFest wrapup podcast (http:// > live.cakephp.org/shows/view/7). > > -Matt > www.pseudocoder.com > Hrm...I listened to that same podcast, but obviously not close enough. Shame on me for daring to w

Re: Is JQuery replacing Prototype in cake?

2008-02-17 Thread MattC
That's my blog...I heard it on the CakeFest wrapup podcast (http:// live.cakephp.org/shows/view/7). -Matt www.pseudocoder.com On Feb 17, 5:49 am, keymaster <[EMAIL PROTECTED]> wrote: > I read it here. > > http://www.pseudocoder.com/archives/2008/02/12/article-on-javascript-... > > On Feb 14, 5:0

Re: Is JQuery replacing Prototype in cake?

2008-02-17 Thread keymaster
I read it here. http://www.pseudocoder.com/archives/2008/02/12/article-on-javascript-validation/ On Feb 14, 5:00 pm, "Chris Hartjes" <[EMAIL PROTECTED]> wrote: > Where did you read this? > --~--~-~--~~~---~--~~ You received this message because you are subscribe

Re: Is JQuery replacing Prototype in cake?

2008-02-15 Thread Julio Protzek
There's no need to create a JQuery helper for CakePHP. All you need is just start using it. --- Julio Vinicius Protzek --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send em

Re: Is JQuery replacing Prototype in cake?

2008-02-14 Thread R. Rajesh Jeba Anbiah
On Feb 14, 8:36 pm, Baz <[EMAIL PROTECTED]> wrote: > Good times! There are a lot of arguments as to which of these frameworks is > better. But IMO, I think JQuery is better suited to CakePHP's uses. Just > need to include the form plugin (can't live without it). > > Currently, I just dump a JS blo

Re: Prototype/Scriptaculous causes background-color problem

2008-02-14 Thread b logica
ar to anyone and does anyone have an > idea what the cause+solution is? > No, but I'm guessing it's not a Cake problem. Try creating a plain HTML page--no PHP, no includes, etc.--and check the page in Safari. That is, serve the page from a non-Cake virtual host. If you still see the prob

Re: Is JQuery replacing Prototype in cake?

2008-02-14 Thread Baz
[mailto:[EMAIL PROTECTED] En nombre > de Chris Hartjes > Enviado el: Jueves, 14 de Febrero de 2008 12:00 p.m. > Para: cake-php@googlegroups.com > Asunto: Re: Is JQuery replacing Prototype in cake? > > > On Thu, Feb 14, 2008 at 9:58 AM, keymaster <[EMAIL PROTECTED]> w

Re: Is JQuery replacing Prototype in cake?

2008-02-14 Thread Chris Hartjes
On Thu, Feb 14, 2008 at 11:13 AM, Mariano Iglesias <[EMAIL PROTECTED]> wrote: > > He may have heard nate saying it on the latest The Show episode. > > -MI I see... Well, I think the first step would be to create an jQuery helper similar to what we have existing already. And no, I'm not volunt

RE: Is JQuery replacing Prototype in cake?

2008-02-14 Thread Mariano Iglesias
://www.MarianoIglesias.com.ar -Mensaje original- De: cake-php@googlegroups.com [mailto:[EMAIL PROTECTED] En nombre de Chris Hartjes Enviado el: Jueves, 14 de Febrero de 2008 12:00 p.m. Para: cake-php@googlegroups.com Asunto: Re: Is JQuery replacing Prototype in cake? On Thu, Feb 14, 2008 at 9

Re: Is JQuery replacing Prototype in cake?

2008-02-14 Thread Chris Hartjes
On Thu, Feb 14, 2008 at 9:58 AM, keymaster <[EMAIL PROTECTED]> wrote: > > I recently read something about cake moving to JQuery instead of > Prototype. > > Anyone know whether this is true? Where did you read this? -- Chris Hartjes Internet Loudmouth Motto for 2008:

Is JQuery replacing Prototype in cake?

2008-02-14 Thread keymaster
I recently read something about cake moving to JQuery instead of Prototype. Anyone know whether this is true? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, sen

Prototype/Scriptaculous causes background-color problem

2008-02-14 Thread Bart
Whenever I include prototype.js and scriptaculous.js using simply: my Safari browser starts to leave out pieces of the background color, parts turn white. In my CSS i've declared both background-color and background-image. (a .png with transparency) Leaving out one of the script tags above el

  1   2   >