Custom Input field add
- Single Page
Posted 19 October 2012 - 06:29 AM
I need to a additional field which is not exist the database table.
Example: If amount field is the virtual or custom input field.
When data insert, the amount field value will be pass debit or credit field (which are database table field) with some checking.
Any help?
Posted 19 October 2012 - 15:00 PM
......
$crud->add_fields('my_field');
$crud->change_field_type('my_field', 'text');
$crud->callback_edit_field('my_field',array($this,'callback_my_field'));
......
function callback_my_field($value = '', $primary_key = '')
{
your code
}
Posted 21 November 2012 - 07:05 AM