I'm using FuelPHP 1.0
version... I create form field validation server side...
eg - $fs->add('test', 'test', array('type'=>'text'), array('required'));
FuelPHP
automatically create the client side validation according to server side validation... and run on Firefox
and Chrome
that client side validation working fine but IE
client side validation
not working.... is there any problem with IE
and FuelPHP
Thanks
Fuel just outputs HTML5 validation rules with the form elements. It's up to the browser to support them.
You can implement the h5validate jQuery library to simulate the behaviour on unsupported browsers.