I tried to change the foreignkey drop down to text field in the symfony filter form. But after i change the drop down field to text field, my field name changed to xxx_filter[‘foreign_id’][‘text’] instead of xxx_filter[‘foreign_id’]. And everytime i submit the form it show “SQLSTATE[HY093]: Invalid parameter number: parameter was not defined”.
After few hours of googling, i manage to find the solution for this filter form problem. To solve the problem follow the steps below:-
Advertisements
- Open your filter class from lib/doctrine/yyyyFormFilter.class.php
- now you add a function in the yyyyFormFilter.class.php file like below:-
public function convertXXXXXXValue($value) { if (is_array($value) && isset($value['text']) && '' != $value['text']) { return $value['text']; } }
** replace the XXXXXX to your column name
- Now you may try your form again. It should be working now 🙂
Related posts:
Symfony: How to query using Criteria OR
How to remove newline character in PHP
How to import contacts from Mac to Nokia N900
Prestashop 1.6: "Unexpected token <" error when upload category thumbnail
How to clear play history in VLC media player
Symfony: How to escape hash # character in yaml
WordPress: How to remove meta generator tag?
Symfony: PHP Fatal error: Call to a member function setData()
Share this with your friends:-