[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-02-19 Thread Maxime Gréau
hi,

look at svn history, the sfWidgetFormJQueryDate have an new option
since 30/11/2009 (tichet b#5382) : 'date_widget', so you can use it
like this :

new sfWidgetFormJQueryDate(array('date_widget' = new
sfWidgetFormDate()));

the default format option is '%month%/%day%/%year%' for this widget.

On 29 déc 2009, 13:58, axel at axel.zu...@gmail.com wrote:
 after upgrading to symonfy 1.3 and sfFormExtraPlugin  1.1.1 the
 format option is no longer supported by sfWidgetFormJQuery

     $this-setWidgets(array(
       'from_date'    = newsfWidgetFormJQueryDate(array(
              'image'='/images/icons/calendar_view_month.gif',
              'format' = '%day%-%month%-%year%',
              'culture' = 'de_AT')
              ),
     ));

 is there another way to change the date format (from mm-dd- to dd-
 mm-)?

-- 
You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.



[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-14 Thread Tom Ptacnik
And what about to make a plugin with sfWidgetFormMassmilianoDate ? ;)

or add this widget to sfFormExtraPlugin...


On 14 led, 08:42, Massimiliano Arione garak...@gmail.com wrote:
 On 12 Gen, 14:40, dziobacz aaabbbcccda...@gmail.com wrote:

  Massimiliano maybe you could create a plugin from your solution and
  place it here:http://www.symfony-project.org/plugins/?:)

 I don't think a symfony plugin makes sense.
 Consider that my solution is a *pure-javascript* one. There's no php
 inside :-)
 Also, it's suitable for any date select (even if it's ready to work
 with symfony ones)
 Instead, maybe I'll do a single package to download and extract into a
 symfony project, to just work.

 Massimiliano
-- 
You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-13 Thread Massimiliano Arione
On 12 Gen, 14:40, dziobacz aaabbbcccda...@gmail.com wrote:
 Massimiliano maybe you could create a plugin from your solution and
 place it here:http://www.symfony-project.org/plugins/? :)

I don't think a symfony plugin makes sense.
Consider that my solution is a *pure-javascript* one. There's no php
inside :-)
Also, it's suitable for any date select (even if it's ready to work
with symfony ones)
Instead, maybe I'll do a single package to download and extract into a
symfony project, to just work.

Massimiliano
-- 
You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-12 Thread axel at
there is already a ticket reporting this problem:
http://trac.symfony-project.org/ticket/8041
I closed your ticket referring to 8041

I think mm-dd- is the standard format in the usa?

greetings axel


On 12 Jan., 07:57, dziobacz aaabbbcccda...@gmail.com wrote:
 I would like to use also format in sfWidgetFormJQueryDate in symfony
 1.4. Here is my ticket:http://trac.symfony-project.org/ticket/8093#preview
 You can give there your suggestions so maybe fabien faster solve this
 problem.
 What is more I think current format: mm-dd- is wrong because in
 normal countries people use dd-mm- or at least -mm-dd. I don't
 know country where date has that strange format: mm-dd- xD

 On 7 Sty, 09:08, Massimiliano Arione garak...@gmail.com wrote:

  Tom, I fixed the layout issue.
  Thanks for reporting it.

  Massimiliano

  On 5 Gen, 19:38, Tom Ptacnik to...@tomor.cz wrote:

   I wanted to add a link to a printscreen to imageshack (with your
   datepicker in Opera), but when I add a link into this reply window
   it show me an error that I can't post it...

   On 5 led, 19:23, Tom Ptacnik to...@tomor.cz wrote:

Hello Axel, I like your solution, but in Opera (v. 10.10) it has
broken layout little bit ...
-- 
You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-12 Thread Massimiliano Arione
On 12 Gen, 07:57, dziobacz aaabbbcccda...@gmail.com wrote:
 I would like to use also format in sfWidgetFormJQueryDate in symfony
 1.4. Here is my ticket:http://trac.symfony-project.org/ticket/8093#preview
 You can give there your suggestions so maybe fabien faster solve this
 problem.
 What is more I think current format: mm-dd- is wrong because in
 normal countries people use dd-mm- or at least -mm-dd. I don't
 know country where date has that strange format: mm-dd- xD

I'm sorry for repeating myself, but: just don't use
sfWidgetFormJQueryDate.
Use sfWidgetFormDate, or even sfWidgetFormDateTime (or even i18n ones)
with a pure javascript (jquery) solution: 
http://garakkio.altervista.org/datepicker/
-- 
You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-12 Thread dziobacz
Massimiliano maybe you could create a plugin from your solution and
place it here: http://www.symfony-project.org/plugins/ ? :)

On 12 Sty, 14:03, Massimiliano Arione garak...@gmail.com wrote:
 On 12 Gen, 07:57, dziobacz aaabbbcccda...@gmail.com wrote:

  I would like to use also format in sfWidgetFormJQueryDate in symfony
  1.4. Here is my ticket:http://trac.symfony-project.org/ticket/8093#preview
  You can give there your suggestions so maybe fabien faster solve this
  problem.
  What is more I think current format: mm-dd- is wrong because in
  normal countries people use dd-mm- or at least -mm-dd. I don't
  know country where date has that strange format: mm-dd- xD

 I'm sorry for repeating myself, but: just don't use
 sfWidgetFormJQueryDate.
 Use sfWidgetFormDate, or even sfWidgetFormDateTime (or even i18n ones)
 with a pure javascript (jquery) 
 solution:http://garakkio.altervista.org/datepicker/
-- 
You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




Re: [symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-12 Thread Rodrigo Ruiz Fuentes

El 12/01/2010 10:40, dziobacz escribió:

Massimiliano maybe you could create a plugin from your solution and
place it here: http://www.symfony-project.org/plugins/ ? :)

On 12 Sty, 14:03, Massimiliano Arionegarak...@gmail.com  wrote:

On 12 Gen, 07:57, dziobaczaaabbbcccda...@gmail.com  wrote:


I would like to use also format in sfWidgetFormJQueryDate in symfony
1.4. Here is my ticket:http://trac.symfony-project.org/ticket/8093#preview
You can give there your suggestions so maybe fabien faster solve this
problem.
What is more I think current format: mm-dd- is wrong because in
normal countries people use dd-mm- or at least -mm-dd. I don't
know country where date has that strange format: mm-dd- xD


I'm sorry for repeating myself, but: just don't use
sfWidgetFormJQueryDate.
Use sfWidgetFormDate, or even sfWidgetFormDateTime (or even i18n ones)
with a pure javascript (jquery) 
solution:http://garakkio.altervista.org/datepicker/


sfWidgetFormDate is a step backwards...

--
Rodrigo Ruiz Fuentes
-- 
You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-11 Thread dziobacz
I would like to use also format in sfWidgetFormJQueryDate in symfony
1.4. Here is my ticket: http://trac.symfony-project.org/ticket/8093#preview
You can give there your suggestions so maybe fabien faster solve this
problem.
What is more I think current format: mm-dd- is wrong because in
normal countries people use dd-mm- or at least -mm-dd. I don't
know country where date has that strange format: mm-dd- xD


On 7 Sty, 09:08, Massimiliano Arione garak...@gmail.com wrote:
 Tom, I fixed the layout issue.
 Thanks for reporting it.

 Massimiliano

 On 5 Gen, 19:38, Tom Ptacnik to...@tomor.cz wrote:

  I wanted to add a link to a printscreen to imageshack (with your
  datepicker in Opera), but when I add a link into this reply window
  it show me an error that I can't post it...

  On 5 led, 19:23, Tom Ptacnik to...@tomor.cz wrote:

   Hello Axel, I like your solution, but in Opera (v. 10.10) it has
   broken layout little bit ...


-- 
You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-07 Thread Massimiliano Arione
Tom, I fixed the layout issue.
Thanks for reporting it.

Massimiliano

On 5 Gen, 19:38, Tom Ptacnik to...@tomor.cz wrote:
 I wanted to add a link to a printscreen to imageshack (with your
 datepicker in Opera), but when I add a link into this reply window
 it show me an error that I can't post it...

 On 5 led, 19:23, Tom Ptacnik to...@tomor.cz wrote:

  Hello Axel, I like your solution, but in Opera (v. 10.10) it has
  broken layout little bit ...
-- 
You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-05 Thread Massimiliano Arione
Axel,
my solution is totally independ from date format.
On my page (liked above) there is also an example with day/month/year


On 4 Gen, 13:17, axel at axel.zu...@gmail.com wrote:
 Hi Massimiliano,

 when I use your datepicker solution I still have the problem that the
 date selects are mm/dd/ and I would need dd/mm/
 ( Date.format = 'dd.mm.'; is included in date_de.js )

 On 31 Dez. 2009, 17:01, Massimiliano Arione garak...@gmail.com
 wrote:

  Forget sfWidgetFormJQuery and try this full-javascript 
  solution:http://garakkio.altervista.org/datepicker/

  On 29 Dic, 13:58, axel at axel.zu...@gmail.com wrote:

   after upgrading to symonfy 1.3 and sfFormExtraPlugin  1.1.1 the
   format option is no longer supported by sfWidgetFormJQuery

       $this-setWidgets(array(
         'from_date'    = new sfWidgetFormJQueryDate(array(
                'image'='/images/icons/calendar_view_month.gif',
                'format' = '%day%-%month%-%year%',
                'culture' = 'de_AT')
                ),
       ));

   is there another way to change the date format (from mm-dd- to dd-
   mm-)?

--

You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-05 Thread Tom Ptacnik
Hello Axel, I like your solution, but in Opera (v. 10.10) it has
broken layout little bit ...


On 5 led, 11:40, Massimiliano Arione garak...@gmail.com wrote:
 Axel,
 my solution is totally independ from date format.
 On my page (liked above) there is also an example with day/month/year

 On 4 Gen, 13:17, axel at axel.zu...@gmail.com wrote:



  Hi Massimiliano,

  when I use your datepicker solution I still have the problem that the
  date selects are mm/dd/ and I would need dd/mm/
  ( Date.format = 'dd.mm.'; is included in date_de.js )

  On 31 Dez. 2009, 17:01, Massimiliano Arione garak...@gmail.com
  wrote:

   Forget sfWidgetFormJQuery and try this full-javascript 
   solution:http://garakkio.altervista.org/datepicker/

   On 29 Dic, 13:58, axel at axel.zu...@gmail.com wrote:

after upgrading to symonfy 1.3 and sfFormExtraPlugin  1.1.1 the
format option is no longer supported by sfWidgetFormJQuery

    $this-setWidgets(array(
      'from_date'    = new sfWidgetFormJQueryDate(array(
             'image'='/images/icons/calendar_view_month.gif',
             'format' = '%day%-%month%-%year%',
             'culture' = 'de_AT')
             ),
    ));

is there another way to change the date format (from mm-dd- to dd-
mm-)?
-- 
You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-05 Thread Tom Ptacnik
I wanted to add a link to a printscreen to imageshack (with your
datepicker in Opera), but when I add a link into this reply window
it show me an error that I can't post it...

On 5 led, 19:23, Tom Ptacnik to...@tomor.cz wrote:
 Hello Axel, I like your solution, but in Opera (v. 10.10) it has
 broken layout little bit ...

 On 5 led, 11:40, Massimiliano Arione garak...@gmail.com wrote:



  Axel,
  my solution is totally independ from date format.
  On my page (liked above) there is also an example with day/month/year

  On 4 Gen, 13:17, axel at axel.zu...@gmail.com wrote:

   Hi Massimiliano,

   when I use your datepicker solution I still have the problem that the
   date selects are mm/dd/ and I would need dd/mm/
   ( Date.format = 'dd.mm.'; is included in date_de.js )

   On 31 Dez. 2009, 17:01, Massimiliano Arione garak...@gmail.com
   wrote:

Forget sfWidgetFormJQuery and try this full-javascript 
solution:http://garakkio.altervista.org/datepicker/

On 29 Dic, 13:58, axel at axel.zu...@gmail.com wrote:

 after upgrading to symonfy 1.3 and sfFormExtraPlugin  1.1.1 the
 format option is no longer supported by sfWidgetFormJQuery

     $this-setWidgets(array(
       'from_date'    = new sfWidgetFormJQueryDate(array(
              'image'='/images/icons/calendar_view_month.gif',
              'format' = '%day%-%month%-%year%',
              'culture' = 'de_AT')
              ),
     ));

 is there another way to change the date format (from mm-dd- to dd-
 mm-)?
-- 
You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-04 Thread axel at
Hi Massimiliano,

when I use your datepicker solution I still have the problem that the
date selects are mm/dd/ and I would need dd/mm/
( Date.format = 'dd.mm.'; is included in date_de.js )



On 31 Dez. 2009, 17:01, Massimiliano Arione garak...@gmail.com
wrote:
 Forget sfWidgetFormJQuery and try this full-javascript 
 solution:http://garakkio.altervista.org/datepicker/

 On 29 Dic, 13:58, axel at axel.zu...@gmail.com wrote:

  after upgrading to symonfy 1.3 and sfFormExtraPlugin  1.1.1 the
  format option is no longer supported by sfWidgetFormJQuery

      $this-setWidgets(array(
        'from_date'    = new sfWidgetFormJQueryDate(array(
               'image'='/images/icons/calendar_view_month.gif',
               'format' = '%day%-%month%-%year%',
               'culture' = 'de_AT')
               ),
      ));

  is there another way to change the date format (from mm-dd- to dd-
  mm-)?

--

You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2010-01-04 Thread Florian
Hi, I already had this problem and I decided to switch to the old
Calendar widget system, which is more complete:

http://pastebin.com/mfba353b

On 4 jan, 13:17, axel at axel.zu...@gmail.com wrote:
 Hi Massimiliano,

 when I use your datepicker solution I still have the problem that the
 date selects are mm/dd/ and I would need dd/mm/
 ( Date.format = 'dd.mm.'; is included in date_de.js )

 On 31 Dez. 2009, 17:01, Massimiliano Arione garak...@gmail.com
 wrote:

  Forget sfWidgetFormJQuery and try this full-javascript 
  solution:http://garakkio.altervista.org/datepicker/

  On 29 Dic, 13:58, axel at axel.zu...@gmail.com wrote:

   after upgrading to symonfy 1.3 and sfFormExtraPlugin  1.1.1 the
   format option is no longer supported by sfWidgetFormJQuery

       $this-setWidgets(array(
         'from_date'    = new sfWidgetFormJQueryDate(array(
                'image'='/images/icons/calendar_view_month.gif',
                'format' = '%day%-%month%-%year%',
                'culture' = 'de_AT')
                ),
       ));

   is there another way to change the date format (from mm-dd- to dd-
   mm-)?



--

You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2009-12-31 Thread Massimiliano Arione
Forget sfWidgetFormJQuery and try this full-javascript solution:
http://garakkio.altervista.org/datepicker/

On 29 Dic, 13:58, axel at axel.zu...@gmail.com wrote:
 after upgrading to symonfy 1.3 and sfFormExtraPlugin  1.1.1 the
 format option is no longer supported by sfWidgetFormJQuery

     $this-setWidgets(array(
       'from_date'    = new sfWidgetFormJQueryDate(array(
              'image'='/images/icons/calendar_view_month.gif',
              'format' = '%day%-%month%-%year%',
              'culture' = 'de_AT')
              ),
     ));

 is there another way to change the date format (from mm-dd- to dd-
 mm-)?

--

You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2009-12-30 Thread axel at
no one here with the same problem? any ideas?
thx

On 29 Dez., 13:58, axel at axel.zu...@gmail.com wrote:
 after upgrading to symonfy 1.3 and sfFormExtraPlugin  1.1.1 the
 format option is no longer supported by sfWidgetFormJQuery

     $this-setWidgets(array(
       'from_date'    = new sfWidgetFormJQueryDate(array(
              'image'='/images/icons/calendar_view_month.gif',
              'format' = '%day%-%month%-%year%',
              'culture' = 'de_AT')
              ),
     ));

 is there another way to change the date format (from mm-dd- to dd-
 mm-)?

--

You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2009-12-30 Thread gino pilotino
is this the _latest_ sfFormExtraPlugin ?

On 30 Dic, 13:51, axel at axel.zu...@gmail.com wrote:
 no one here with the same problem? any ideas?
 thx

 On 29 Dez., 13:58, axel at axel.zu...@gmail.com wrote:

  after upgrading to symonfy 1.3 and sfFormExtraPlugin  1.1.1 the
  format option is no longer supported by sfWidgetFormJQuery

      $this-setWidgets(array(
        'from_date'    = new sfWidgetFormJQueryDate(array(
               'image'='/images/icons/calendar_view_month.gif',
               'format' = '%day%-%month%-%year%',
               'culture' = 'de_AT')
               ),
      ));

  is there another way to change the date format (from mm-dd- to dd-
  mm-)?

--

You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




[symfony-users] Re: sfWidgetFormJQueryDate option format is no longer supported in version 1.1.1?

2009-12-30 Thread axel at
yes I use sfFormExtraPlugin 1.1.1,  the latest stable version

On 30 Dez., 19:29, gino pilotino spammm...@gmail.com wrote:
 is this the _latest_ sfFormExtraPlugin ?

 On 30 Dic, 13:51, axel at axel.zu...@gmail.com wrote:

  no one here with the same problem? any ideas?
  thx

  On 29 Dez., 13:58, axel at axel.zu...@gmail.com wrote:

   after upgrading to symonfy 1.3 and sfFormExtraPlugin  1.1.1 the
   format option is no longer supported by sfWidgetFormJQuery

       $this-setWidgets(array(
         'from_date'    = new sfWidgetFormJQueryDate(array(
                'image'='/images/icons/calendar_view_month.gif',
                'format' = '%day%-%month%-%year%',
                'culture' = 'de_AT')
                ),
       ));

   is there another way to change the date format (from mm-dd- to dd-
   mm-)?

--

You received this message because you are subscribed to the Google Groups 
symfony users group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.