Skip to content

fix filter #171

@edwardtich

Description

@edwardtich

hi, I have a request to fix the filter, if all is selected, then only running automatically outputs, the rest of the filters work as they should, I looked in the controller, this can be fixed in $filter by replacing 'status' => $data['status']!== " ? (int) $data['status'] : null, to 'status' => isset($data['status']) && $data['status'] !== " && is_numeric($data['status']) ? (int) $data['status'] : null and the filter immediately starts working as originally thought up and I would like to know if there is an option to add a datepicker to the view

'status' => isset($data['status']) ? (int) $data['status'] : null,

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions