Re: Modify FullCalendar

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

Re: Modify FullCalendar

Paul DeBruicker
Hi Lorenzo,


Its been a while since I worked with FullCalendar.  Which buttons do you want to change the text of?  



Do you mean this part: http://arshaw.com/fullcalendar/docs/text/buttonText/ ?


I dont have time to look at it soon but you should be able to, in your calendar setup code, add a line like


buttonText: self buttonTextJson;



an then the method #buttonTextJson is something like

buttonTextJson
        |dict|
        dict:=Dictionary new
        dict at:'next' put: 'n'.
        dict at: 'prev' put: 'p'.
        dict at: 'day' put: 'd'.
        dict at: 'today' put: 't'.
        dict at: 'month' put: 'm'.
        dict at: 'year' put: 'y'.
        ^dict


Hope this helps, and if it doesn't send me a snippet of code you think should work and I'll take a look.  


Paul

On Jan 24, 2014, at 10:22 AM, [hidden email] wrote:

> Hi Paul,
>
> I am an old smalltalke but I am new to Seaside.
> I am using FullCalendar and I do not know how to change buttonText as I do not know how to set up the requested object for personalization; do you mind giving me some hint in orderer to translate it into Italian?
>
> Thank you vary much.
>
> Lorenzo
>
> _____________________________________
> Sent from http://forum.world.st
>

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

Re: Modify FullCalendar

Esteban A. Maringolo
Is there a way to use full calendar with Seaside?


Esteban A. Maringolo


2014-01-24 Paul DeBruicker <[hidden email]>:

> Hi Lorenzo,
>
>
> Its been a while since I worked with FullCalendar.  Which buttons do you want to change the text of?
>
>
>
> Do you mean this part: http://arshaw.com/fullcalendar/docs/text/buttonText/ ?
>
>
> I dont have time to look at it soon but you should be able to, in your calendar setup code, add a line like
>
>
> buttonText: self buttonTextJson;
>
>
>
> an then the method #buttonTextJson is something like
>
> buttonTextJson
>         |dict|
>         dict:=Dictionary new
>         dict at:'next' put: 'n'.
>         dict at: 'prev' put: 'p'.
>         dict at: 'day' put: 'd'.
>         dict at: 'today' put: 't'.
>         dict at: 'month' put: 'm'.
>         dict at: 'year' put: 'y'.
>         ^dict
>
>
> Hope this helps, and if it doesn't send me a snippet of code you think should work and I'll take a look.
>
>
> Paul
>
> On Jan 24, 2014, at 10:22 AM, [hidden email] wrote:
>
>> Hi Paul,
>>
>> I am an old smalltalke but I am new to Seaside.
>> I am using FullCalendar and I do not know how to change buttonText as I do not know how to set up the requested object for personalization; do you mind giving me some hint in orderer to translate it into Italian?
>>
>> Thank you vary much.
>>
>> Lorenzo
>>
>> _____________________________________
>> Sent from http://forum.world.st
>>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Modify FullCalendar

Paul DeBruicker
Yeah its part of the JQueryWidgetBox.  You can load it from the seaside repo on smalltalkhub.  There is an example calendar/page too.


I haven't been keeping the seaside/smalltlak up to date with the latest js version but its not hard to do and there probably aren't any breaking changes.  It used to be that the guy would keep it up to date with the current stable jQuery versions.






Esteban A. Maringolo wrote
Is there a way to use full calendar with Seaside?


Esteban A. Maringolo


2014-01-24 Paul DeBruicker <[hidden email]>:
> Hi Lorenzo,
>
>
> Its been a while since I worked with FullCalendar.  Which buttons do you want to change the text of?
>
>
>
> Do you mean this part: http://arshaw.com/fullcalendar/docs/text/buttonText/ ?
>
>
> I dont have time to look at it soon but you should be able to, in your calendar setup code, add a line like
>
>
> buttonText: self buttonTextJson;
>
>
>
> an then the method #buttonTextJson is something like
>
> buttonTextJson
>         |dict|
>         dict:=Dictionary new
>         dict at:'next' put: 'n'.
>         dict at: 'prev' put: 'p'.
>         dict at: 'day' put: 'd'.
>         dict at: 'today' put: 't'.
>         dict at: 'month' put: 'm'.
>         dict at: 'year' put: 'y'.
>         ^dict
>
>
> Hope this helps, and if it doesn't send me a snippet of code you think should work and I'll take a look.
>
>
> Paul
>
> On Jan 24, 2014, at 10:22 AM, [hidden email] wrote:
>
>> Hi Paul,
>>
>> I am an old smalltalke but I am new to Seaside.
>> I am using FullCalendar and I do not know how to change buttonText as I do not know how to set up the requested object for personalization; do you mind giving me some hint in orderer to translate it into Italian?
>>
>> Thank you vary much.
>>
>> Lorenzo
>>
>> _____________________________________
>> Sent from http://forum.world.st
>>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Modify FullCalendar

Esteban A. Maringolo
I definitely need to integrate JQueryWidgetBox in my image. The last
time I tried it upgraded my whole Seaside version to a newer one, and
broke almost everything :D

Regards,

Esteban A. Maringolo


2014-01-27 Paul DeBruicker <[hidden email]>:

> Yeah its part of the JQueryWidgetBox.  You can load it from the seaside repo
> on smalltalkhub.  There is an example calendar/page too.
>
>
> I haven't been keeping the seaside/smalltlak up to date with the latest js
> version but its not hard to do and there probably aren't any breaking
> changes.  It used to be that the guy would keep it up to date with the
> current stable jQuery versions.
>
>
>
>
>
>
>
> Esteban A. Maringolo wrote
>> Is there a way to use full calendar with Seaside?
>>
>>
>> Esteban A. Maringolo
>>
>>
>> 2014-01-24 Paul DeBruicker &lt;
>
>> pdebruic@
>
>> &gt;:
>>> Hi Lorenzo,
>>>
>>>
>>> Its been a while since I worked with FullCalendar.  Which buttons do you
>>> want to change the text of?
>>>
>>>
>>>
>>> Do you mean this part:
>>> http://arshaw.com/fullcalendar/docs/text/buttonText/ ?
>>>
>>>
>>> I dont have time to look at it soon but you should be able to, in your
>>> calendar setup code, add a line like
>>>
>>>
>>> buttonText: self buttonTextJson;
>>>
>>>
>>>
>>> an then the method #buttonTextJson is something like
>>>
>>> buttonTextJson
>>>         |dict|
>>>         dict:=Dictionary new
>>>         dict at:'next' put: 'n'.
>>>         dict at: 'prev' put: 'p'.
>>>         dict at: 'day' put: 'd'.
>>>         dict at: 'today' put: 't'.
>>>         dict at: 'month' put: 'm'.
>>>         dict at: 'year' put: 'y'.
>>>         ^dict
>>>
>>>
>>> Hope this helps, and if it doesn't send me a snippet of code you think
>>> should work and I'll take a look.
>>>
>>>
>>> Paul
>>>
>>> On Jan 24, 2014, at 10:22 AM,
>
>> lorenzo@
>
>>  wrote:
>>>
>>>> Hi Paul,
>>>>
>>>> I am an old smalltalke but I am new to Seaside.
>>>> I am using FullCalendar and I do not know how to change buttonText as I
>>>> do not know how to set up the requested object for personalization; do
>>>> you mind giving me some hint in orderer to translate it into Italian?
>>>>
>>>> Thank you vary much.
>>>>
>>>> Lorenzo
>>>>
>>>> _____________________________________
>>>> Sent from http://forum.world.st
>>>>
>>>
>>> _______________________________________________
>>> seaside mailing list
>>>
>
>> seaside@.squeakfoundation
>
>>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> _______________________________________________
>> seaside mailing list
>
>> seaside@.squeakfoundation
>
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>
>
>
>
> --
> View this message in context: http://forum.world.st/Re-Modify-FullCalendar-tp4739133p4739697.html
> Sent from the Seaside General mailing list archive at Nabble.com.
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Modify FullCalendar

Paul DeBruicker
I'd guess that there isn't much tied to a specific version of  Seaside in the JQueryWidgetBox.  I think you'd be safe to just change the version of Seaside in your copy of the ConfigurationOfJQueryWidgetBox to whatever version of Seaside you're accustomed to using.  





Esteban A. Maringolo wrote
I definitely need to integrate JQueryWidgetBox in my image. The last
time I tried it upgraded my whole Seaside version to a newer one, and
broke almost everything :D

Regards,

Esteban A. Maringolo


2014-01-27 Paul DeBruicker <[hidden email]>:
> Yeah its part of the JQueryWidgetBox.  You can load it from the seaside repo
> on smalltalkhub.  There is an example calendar/page too.
>
>
> I haven't been keeping the seaside/smalltlak up to date with the latest js
> version but its not hard to do and there probably aren't any breaking
> changes.  It used to be that the guy would keep it up to date with the
> current stable jQuery versions.
>
>
>
>
>
>
>
> Esteban A. Maringolo wrote
>> Is there a way to use full calendar with Seaside?
>>
>>
>> Esteban A. Maringolo
>>
>>
>> 2014-01-24 Paul DeBruicker <
>
>> pdebruic@
>
>> >:
>>> Hi Lorenzo,
>>>
>>>
>>> Its been a while since I worked with FullCalendar.  Which buttons do you
>>> want to change the text of?
>>>
>>>
>>>
>>> Do you mean this part:
>>> http://arshaw.com/fullcalendar/docs/text/buttonText/ ?
>>>
>>>
>>> I dont have time to look at it soon but you should be able to, in your
>>> calendar setup code, add a line like
>>>
>>>
>>> buttonText: self buttonTextJson;
>>>
>>>
>>>
>>> an then the method #buttonTextJson is something like
>>>
>>> buttonTextJson
>>>         |dict|
>>>         dict:=Dictionary new
>>>         dict at:'next' put: 'n'.
>>>         dict at: 'prev' put: 'p'.
>>>         dict at: 'day' put: 'd'.
>>>         dict at: 'today' put: 't'.
>>>         dict at: 'month' put: 'm'.
>>>         dict at: 'year' put: 'y'.
>>>         ^dict
>>>
>>>
>>> Hope this helps, and if it doesn't send me a snippet of code you think
>>> should work and I'll take a look.
>>>
>>>
>>> Paul
>>>
>>> On Jan 24, 2014, at 10:22 AM,
>
>> lorenzo@
>
>>  wrote:
>>>
>>>> Hi Paul,
>>>>
>>>> I am an old smalltalke but I am new to Seaside.
>>>> I am using FullCalendar and I do not know how to change buttonText as I
>>>> do not know how to set up the requested object for personalization; do
>>>> you mind giving me some hint in orderer to translate it into Italian?
>>>>
>>>> Thank you vary much.
>>>>
>>>> Lorenzo
>>>>
>>>> _____________________________________
>>>> Sent from http://forum.world.st
>>>>
>>>
>>> _______________________________________________
>>> seaside mailing list
>>>
>
>> seaside@.squeakfoundation
>
>>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> _______________________________________________
>> seaside mailing list
>
>> seaside@.squeakfoundation
>
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>
>
>
>
> --
> View this message in context: http://forum.world.st/Re-Modify-FullCalendar-tp4739133p4739697.html
> Sent from the Seaside General mailing list archive at Nabble.com.
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

R: [Seaside] Re: Modify FullCalendar

Lorenzo
In reply to this post by Esteban A. Maringolo
Hi Esteban,

I have installed FullCalender and I have used quite a lot of personalization
thank to Paul's help.
If you want, I can send you the version I am using.

Ciao

Lorenzo

-----Messaggio originale-----
Da: [hidden email]
[mailto:[hidden email]] Per conto di Esteban A.
Maringolo
Inviato: lunedì 27 gennaio 2014 22:17
A: Seaside - general discussion
Oggetto: Re: [Seaside] Re: Modify FullCalendar

I definitely need to integrate JQueryWidgetBox in my image. The last time I
tried it upgraded my whole Seaside version to a newer one, and broke almost
everything :D

Regards,

Esteban A. Maringolo


2014-01-27 Paul DeBruicker <[hidden email]>:

> Yeah its part of the JQueryWidgetBox.  You can load it from the
> seaside repo on smalltalkhub.  There is an example calendar/page too.
>
>
> I haven't been keeping the seaside/smalltlak up to date with the
> latest js version but its not hard to do and there probably aren't any
> breaking changes.  It used to be that the guy would keep it up to date
> with the current stable jQuery versions.
>
>
>
>
>
>
>
> Esteban A. Maringolo wrote
>> Is there a way to use full calendar with Seaside?
>>
>>
>> Esteban A. Maringolo
>>
>>
>> 2014-01-24 Paul DeBruicker &lt;
>
>> pdebruic@
>
>> &gt;:
>>> Hi Lorenzo,
>>>
>>>
>>> Its been a while since I worked with FullCalendar.  Which buttons do
>>> you want to change the text of?
>>>
>>>
>>>
>>> Do you mean this part:
>>> http://arshaw.com/fullcalendar/docs/text/buttonText/ ?
>>>
>>>
>>> I dont have time to look at it soon but you should be able to, in
>>> your calendar setup code, add a line like
>>>
>>>
>>> buttonText: self buttonTextJson;
>>>
>>>
>>>
>>> an then the method #buttonTextJson is something like
>>>
>>> buttonTextJson
>>>         |dict|
>>>         dict:=Dictionary new
>>>         dict at:'next' put: 'n'.
>>>         dict at: 'prev' put: 'p'.
>>>         dict at: 'day' put: 'd'.
>>>         dict at: 'today' put: 't'.
>>>         dict at: 'month' put: 'm'.
>>>         dict at: 'year' put: 'y'.
>>>         ^dict
>>>
>>>
>>> Hope this helps, and if it doesn't send me a snippet of code you
>>> think should work and I'll take a look.
>>>
>>>
>>> Paul
>>>
>>> On Jan 24, 2014, at 10:22 AM,
>
>> lorenzo@
>
>>  wrote:
>>>
>>>> Hi Paul,
>>>>
>>>> I am an old smalltalke but I am new to Seaside.
>>>> I am using FullCalendar and I do not know how to change buttonText
>>>> as I do not know how to set up the requested object for
>>>> personalization; do you mind giving me some hint in orderer to
translate it into Italian?

>>>>
>>>> Thank you vary much.
>>>>
>>>> Lorenzo
>>>>
>>>> _____________________________________
>>>> Sent from http://forum.world.st
>>>>
>>>
>>> _______________________________________________
>>> seaside mailing list
>>>
>
>> seaside@.squeakfoundation
>
>>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> _______________________________________________
>> seaside mailing list
>
>> seaside@.squeakfoundation
>
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>
>
>
>
> --
> View this message in context:
> http://forum.world.st/Re-Modify-FullCalendar-tp4739133p4739697.html
> Sent from the Seaside General mailing list archive at Nabble.com.
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

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

Re: Modify FullCalendar

Esteban A. Maringolo
Hi Lorenzo,

Yes please, I need to update my whole image, but I'd like to integrate that. I'm using it through JS and REST, and it's not as smooth as I'd like it to be.

Tante grazie!



Esteban A. Maringolo


2014-01-28 Lorenzo Schiavina <[hidden email]>:
Hi Esteban,

I have installed FullCalender and I have used quite a lot of personalization
thank to Paul's help.
If you want, I can send you the version I am using.

Ciao

Lorenzo

-----Messaggio originale-----
Da: [hidden email]
[mailto:[hidden email]] Per conto di Esteban A.
Maringolo
Inviato: lunedì 27 gennaio 2014 22:17
A: Seaside - general discussion
Oggetto: Re: [Seaside] Re: Modify FullCalendar

I definitely need to integrate JQueryWidgetBox in my image. The last time I
tried it upgraded my whole Seaside version to a newer one, and broke almost
everything :D

Regards,

Esteban A. Maringolo


2014-01-27 Paul DeBruicker <[hidden email]>:
> Yeah its part of the JQueryWidgetBox.  You can load it from the
> seaside repo on smalltalkhub.  There is an example calendar/page too.
>
>
> I haven't been keeping the seaside/smalltlak up to date with the
> latest js version but its not hard to do and there probably aren't any
> breaking changes.  It used to be that the guy would keep it up to date
> with the current stable jQuery versions.
>
>
>
>
>
>
>
> Esteban A. Maringolo wrote
>> Is there a way to use full calendar with Seaside?
>>
>>
>> Esteban A. Maringolo
>>
>>
>> 2014-01-24 Paul DeBruicker &lt;
>
>> pdebruic@
>
>> &gt;:
>>> Hi Lorenzo,
>>>
>>>
>>> Its been a while since I worked with FullCalendar.  Which buttons do
>>> you want to change the text of?
>>>
>>>
>>>
>>> Do you mean this part:
>>> http://arshaw.com/fullcalendar/docs/text/buttonText/ ?
>>>
>>>
>>> I dont have time to look at it soon but you should be able to, in
>>> your calendar setup code, add a line like
>>>
>>>
>>> buttonText: self buttonTextJson;
>>>
>>>
>>>
>>> an then the method #buttonTextJson is something like
>>>
>>> buttonTextJson
>>>         |dict|
>>>         dict:=Dictionary new
>>>         dict at:'next' put: 'n'.
>>>         dict at: 'prev' put: 'p'.
>>>         dict at: 'day' put: 'd'.
>>>         dict at: 'today' put: 't'.
>>>         dict at: 'month' put: 'm'.
>>>         dict at: 'year' put: 'y'.
>>>         ^dict
>>>
>>>
>>> Hope this helps, and if it doesn't send me a snippet of code you
>>> think should work and I'll take a look.
>>>
>>>
>>> Paul
>>>
>>> On Jan 24, 2014, at 10:22 AM,
>
>> lorenzo@
>
>>  wrote:
>>>
>>>> Hi Paul,
>>>>
>>>> I am an old smalltalke but I am new to Seaside.
>>>> I am using FullCalendar and I do not know how to change buttonText
>>>> as I do not know how to set up the requested object for
>>>> personalization; do you mind giving me some hint in orderer to
translate it into Italian?
>>>>
>>>> Thank you vary much.
>>>>
>>>> Lorenzo
>>>>
>>>> _____________________________________
>>>> Sent from http://forum.world.st
>>>>
>>>
>>> _______________________________________________
>>> seaside mailing list
>>>
>
>> seaside@.squeakfoundation
>
>>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> _______________________________________________
>> seaside mailing list
>
>> seaside@.squeakfoundation
>
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>
>
>
>
> --
> View this message in context:
> http://forum.world.st/Re-Modify-FullCalendar-tp4739133p4739697.html
> Sent from the Seaside General mailing list archive at Nabble.com.
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

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


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