⚠ In case you've missed it, we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This is an archived forum. ⚠

  •     

profile picture

adding delete button in edit view



casachit
  • profile picture
  • Member

Posted 11 September 2012 - 05:01 AM

Hi everyone,

Can anyone tell me how to add delete button in edit view that has same functionality as in list?? I want to add delete button in flexigrid in edit view...

midnigther
  • profile picture
  • Member

Posted 13 September 2012 - 01:36 AM

Try it:


...

$crud->callback_edit_field('phone',array($this,'edit_field_callback_1'));

$output = $crud->render();

$this->_example_output($output);
}

function edit_field_callback_1($value, $primary_key)
{
return '<a href="/demo/example_callback_edit_field/iframe/delete/1" title="Delete Office" class="delete-row">
<span class="delete-icon"></span></a>';
}

casachit
  • profile picture
  • Member

Posted 13 September 2012 - 03:07 AM

thanks midnigther.. but I have done it on my own way.. I have made some changes in edit.php and now its working perfectly like I want..... I would share the code if you like to...