![]() |
how to disable submit button when value is not null - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: how to disable submit button when value is not null (/showthread.php?tid=72006) |
how to disable submit button when value is not null - kvanaraj - 10-24-2018 I am using table row to display records Code: echo '<tr>'; once images uploaded the status changed into 1. if this all $row['status'] is null then disable submit button else enable. need suggestion RE: how to disable submit button when value is not null - InsiteFX - 10-24-2018 You know were getting tried of answering the same questions over and over! Use Google search instead of expecting us to do your coding for you. Button disabled Property Or use jQuery toggle RE: how to disable submit button when value is not null - Gurutechnolabs - 11-06-2018 You can need to use any validator library, for example, => http://1000hz.github.io/bootstrap-validator/ Give all validation functionality by default and also possible with customization as per you need RE: how to disable submit button when value is not null - kvanaraj - 11-09-2018 (10-24-2018, 08:43 AM)InsiteFX Wrote: You know were getting tried of answering the same questions over and over! Those values are not input type element. readonly values . how? RE: how to disable submit button when value is not null - InsiteFX - 11-09-2018 Code: // jQuery RE: how to disable submit button when value is not null - kvanaraj - 11-16-2018 (11-09-2018, 04:37 AM)InsiteFX Wrote: Code: $('#mytable tr').each(function() { |