![]() |
re-populating form after invalid submission - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: re-populating form after invalid submission (/showthread.php?tid=2755) |
re-populating form after invalid submission - El Forum - 08-22-2007 [eluser]stevefink[/eluser] I'm trying to re-populate a form after one or more invalid data fields have been submitted. As per the validation user guide, I have the following in my controller: Code: $fields['stock'] = 'Stock'; And the following in my view: Code: <label>Stock# <span class="required"> * </span></label> If any part of the form is not properly submitted, shouldn't those two essentially get repopulated? Instead I get this within my view: Severity: Notice Message: Undefined property: CI_Validation::$stock Filename: console/car_info_view.php Line Number: 43 and A PHP Error was encountered Severity: Notice Message: Undefined property: CI_Validation::$vin Filename: console/car_info_view.php Line Number: 46 Thank you. re-populating form after invalid submission - El Forum - 08-24-2007 [eluser]chobo[/eluser] Try setting some validation rules and running the validation after you set the fields. I'm not sure if you can get away with just setting the fields, it might require rules and or you need to also run the validation init method or whatever sets it off. Use the user guide examples as a reference. re-populating form after invalid submission - El Forum - 08-24-2007 [eluser]Bulk[/eluser] Yes chobo is correct, you do need to set validation rules for any filed you want repopulated - but importantly the rule can be "empty" if you don't want any real validation performed on the fields. |