The option complete is not supported in JQLoad

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

The option complete is not supported in JQLoad

John Toohey
I upgraded to Pharo 1.2 today, and loaded the latest SS, but when running my app, all my #onComplete calls fire the debugger and its tells me that the option 'compete' is not supported by JQLoad. Does anyone know the reason for this?

--
~JT



_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: The option complete is not supported in JQLoad

Lukas Renggli
Yes, it was a typo in previous versions of JQuery that I copied into
the Seaside code. However, it was always implemented as the onSucceed
event. With jQuery 1.6 and with the latest Seaside code this is now
properly called #onSucceed:, so you just need to replace the
#onComplete: with #onSucceed:.

Lukas

On 12 May 2011 20:42, John Toohey <[hidden email]> wrote:

> I upgraded to Pharo 1.2 today, and loaded the latest SS, but when running my
> app, all my #onComplete calls fire the debugger and its tells me that the
> option 'compete' is not supported by JQLoad. Does anyone know the reason for
> this?
>
> --
> ~JT
>
>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>



--
Lukas Renggli
www.lukas-renggli.ch
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: The option complete is not supported in JQLoad

John Toohey
Hey,
I don't have that selector. I installed SS via :-

Gofer new
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfSeaside30';
load.
((Smalltalk at: #ConfigurationOfSeaside30) project latestVersion) load.

into Pharo 1.2.1. Is there another build that I need to install?

On Thu, May 12, 2011 at 14:56, Lukas Renggli <[hidden email]> wrote:
Yes, it was a typo in previous versions of JQuery that I copied into
the Seaside code. However, it was always implemented as the onSucceed
event. With jQuery 1.6 and with the latest Seaside code this is now
properly called #onSucceed:, so you just need to replace the
#onComplete: with #onSucceed:.

Lukas

On 12 May 2011 20:42, John Toohey <[hidden email]> wrote:
> I upgraded to Pharo 1.2 today, and loaded the latest SS, but when running my
> app, all my #onComplete calls fire the debugger and its tells me that the
> option 'compete' is not supported by JQLoad. Does anyone know the reason for
> this?
>
> --
> ~JT
>
>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>



--
Lukas Renggli
www.lukas-renggli.ch
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside



--
~JT



_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: The option complete is not supported in JQLoad

Lukas Renggli
Sorry, it is called #onSuccess:

Lukas

On 12 May 2011 21:13, John Toohey <[hidden email]> wrote:

> Hey,
> I don't have that selector. I installed SS via :-
> Gofer new
> squeaksource: 'MetacelloRepository';
> package: 'ConfigurationOfSeaside30';
> load.
> ((Smalltalk at: #ConfigurationOfSeaside30) project latestVersion) load.
> into Pharo 1.2.1. Is there another build that I need to install?
> On Thu, May 12, 2011 at 14:56, Lukas Renggli <[hidden email]> wrote:
>>
>> Yes, it was a typo in previous versions of JQuery that I copied into
>> the Seaside code. However, it was always implemented as the onSucceed
>> event. With jQuery 1.6 and with the latest Seaside code this is now
>> properly called #onSucceed:, so you just need to replace the
>> #onComplete: with #onSucceed:.
>>
>> Lukas
>>
>> On 12 May 2011 20:42, John Toohey <[hidden email]> wrote:
>> > I upgraded to Pharo 1.2 today, and loaded the latest SS, but when
>> > running my
>> > app, all my #onComplete calls fire the debugger and its tells me that
>> > the
>> > option 'compete' is not supported by JQLoad. Does anyone know the reason
>> > for
>> > this?
>> >
>> > --
>> > ~JT
>> >
>> >
>> >
>> > _______________________________________________
>> > seaside mailing list
>> > [hidden email]
>> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> >
>> >
>>
>>
>>
>> --
>> Lukas Renggli
>> www.lukas-renggli.ch
>> _______________________________________________
>> seaside mailing list
>> [hidden email]
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>
>
> --
> ~JT
>
>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>



--
Lukas Renggli
www.lukas-renggli.ch
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: The option complete is not supported in JQLoad

John Toohey
Thanks.

On Thu, May 12, 2011 at 15:18, Lukas Renggli <[hidden email]> wrote:
Sorry, it is called #onSuccess:

Lukas

On 12 May 2011 21:13, John Toohey <[hidden email]> wrote:
> Hey,
> I don't have that selector. I installed SS via :-
> Gofer new
> squeaksource: 'MetacelloRepository';
> package: 'ConfigurationOfSeaside30';
> load.
> ((Smalltalk at: #ConfigurationOfSeaside30) project latestVersion) load.
> into Pharo 1.2.1. Is there another build that I need to install?
> On Thu, May 12, 2011 at 14:56, Lukas Renggli <[hidden email]> wrote:
>>
>> Yes, it was a typo in previous versions of JQuery that I copied into
>> the Seaside code. However, it was always implemented as the onSucceed
>> event. With jQuery 1.6 and with the latest Seaside code this is now
>> properly called #onSucceed:, so you just need to replace the
>> #onComplete: with #onSucceed:.
>>
>> Lukas
>>
>> On 12 May 2011 20:42, John Toohey <[hidden email]> wrote:
>> > I upgraded to Pharo 1.2 today, and loaded the latest SS, but when
>> > running my
>> > app, all my #onComplete calls fire the debugger and its tells me that
>> > the
>> > option 'compete' is not supported by JQLoad. Does anyone know the reason
>> > for
>> > this?
>> >
>> > --
>> > ~JT
>> >
>> >
>> >
>> > _______________________________________________
>> > seaside mailing list
>> > [hidden email]
>> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> >
>> >
>>
>>
>>
>> --
>> Lukas Renggli
>> www.lukas-renggli.ch
>> _______________________________________________
>> seaside mailing list
>> [hidden email]
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>
>
> --
> ~JT
>
>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>



--
Lukas Renggli
www.lukas-renggli.ch
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside



--
~JT



_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside