Giter VIP home page Giter VIP logo

Comments (5)

cedric-g avatar cedric-g commented on August 16, 2024

Hi :)

The filter_date and filter_date_range types are both based on date type and not datetime type so yes you can't use date_widget and time_widget as these options are only supported by the datetime type.
Maybe we should also provide a filter_datetime and a filter_datetime_range.

With the filter_date_range type can pass some options to the date types by doing like this:

$builder->add('blabla', 'filter_date_range', array(
    'left_date' => array( ... ), // date type options
    'right_date' => array( ... ), // date type options
));

from lexikformfilterbundle.

rvanlaak avatar rvanlaak commented on August 16, 2024

The datetime field makes use of the non-prefixed widget option parameter

http://symfony.com/doc/2.1/reference/forms/types/date.html

So using the widget param kinda works it out for me:

 ->add('datePaidEditor', 'date',
           array(
                'required'      => false,
                'widget'        => 'single_text',
                'label'         => 'Editor uitbetaald'
  ))

The problem is that the filtering doesn't seem to go correct, so for date / datetime it might be an idea to look into it.

from lexikformfilterbundle.

cedric-g avatar cedric-g commented on August 16, 2024

I added a filter_datetime and a filter_datetime_range type. If you want to test it, you can use the filter_datetime branch :)

With filter_datetime_range you can do:

$builder->add('myField', 'filter_datetime_range', array(
    'left_datetime' => array(
        'date_widget' => 'single_text',
        'time_widget' => 'single_text'
    ),
    'right_datetime' => array(),
));

from lexikformfilterbundle.

cedric-g avatar cedric-g commented on August 16, 2024

The filter_datetime branch has been merged in to master.

from lexikformfilterbundle.

jr-k avatar jr-k commented on August 16, 2024

Hello

When I use :

->add('dateadd', 'filter_datetime_range', array(
'left_datetime' => array( ), // date type options
'right_datetime' => array( ), // date type options
))

It says me : The form's view data is expected to be of type scalar, array or an instance of \ArrayAccess, but is an instance of class DateTime. You can avoid this error by setting the "data_class" option to "DateTime" or by adding a view transformer that transforms an instance of class DateTime to scalar, array or an instance of \ArrayAccess.

When I add "data_class" => "Datetime", then it says :

Neither the property "left_datetime" nor one of the methods "getLeftDatetime()", "isLeftDatetime()", "hasLeftDatetime()", "__get()" or "__call()" exist and have public access in class "DateTime".
500 Internal Server Error - NoSuchPropertyException

Please can you help me in this ?

Thanks

from lexikformfilterbundle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.