Welcome Guest, Not a member yet? Register   Sign In
[solved]Custom Validation?
#7

[eluser]brucebat[/eluser]
Thanks:

I tried it with my full controller now but it still doesnt work.

To answer your question $i is used as I have many rows of the same fields.

Code:
// Validation part for events
                                //creates validation rules for all rows that have been completed by user
                                    for ($i=0 ; $i<$completedeventrows; $i++)
                                    {
                                        $this->form_validation->set_rules('time'.$i, 'Time'.($i+1), 'required|xss_clean|callback_valid_time'); // time0, time1, time2 etc
                                        $this->form_validation->set_rules('event'.$i, 'Event'.($i+1), 'required');
                                        $this->form_validation->set_rules('supplies'.$i, 'Supplies'.($i+1), 'xss_clean');
                                        $this->form_validation->set_rules('success'.$i, 'Success'.($i+1), '');
                                        $this->form_validation->set_rules('comment'.$i, 'Comment'.($i+1), 'xss_clean');
                                    };
                    
                    
                    
                    echo validation_errors();
                    return;

It should be a blank page but with validation errors echo'd I hope.

However no messages are echo'd so most likely there is a problem with the function.

I am going to remove callback and see what happens.


Messages In This Thread
[solved]Custom Validation? - by El Forum - 08-02-2011, 10:56 AM
[solved]Custom Validation? - by El Forum - 08-02-2011, 11:36 AM
[solved]Custom Validation? - by El Forum - 08-02-2011, 12:14 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 12:15 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 12:20 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 12:33 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:22 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:28 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:30 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:34 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:35 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:39 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:41 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:43 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:44 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:50 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:53 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:57 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 01:58 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 02:13 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 02:14 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 02:16 PM
[solved]Custom Validation? - by El Forum - 08-02-2011, 02:18 PM



Theme © iAndrew 2016 - Forum software by © MyBB