Add Submit Button in Edit View in Case Module

Hi,

I want to add custom “Submit” button in case module.I add custom code into my editviewdefs but it is not working.

Code:

$viewdefs ['Cases'] = 
array (
  'EditView' => 
  array (
    'templateMeta' =>
    array (
		array (
        'buttons' => 
        array (
		  0 => array(
               'customCode1' => '<input id="Submit" title="Submit" class="button" type="button" name="Submit" value="Submit">',
         ),
        ),
      ),
      'maxColumns' => '2',
      'widths' =>

Hi, welcome. I added code tags to your code so it shows correctly (otherwise some brackets disappear).

I’m afraid I don’t know the answer to your question, thought. I hope somebody else knows.

But if I were you I wouldn’t attempt a form within that custom code, I would try a simple link (assuming you just want to fire an action in some other place).