Changeset 8789
- Timestamp:
- 02/08/10 07:47:36 (7 months ago)
- Files:
-
- modules/branches/2.7/ivr/page.ivr.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.7/ivr/page.ivr.php
r8709 r8789 114 114 <input type="hidden" name="display" value="ivr" /> 115 115 <input type="hidden" name="id" value="<?php echo $id ?>" /> 116 <input name="Submit" type="submit" value="<?php echo _("Save")?>" tabindex="<?php echo ++$tabindex;?>" >116 <input name="Submit" type="submit" value="<?php echo _("Save")?>" tabindex="<?php echo ++$tabindex;?>" disabled> 117 117 <?php 118 118 $usage_list = array(); … … 132 132 } else { 133 133 ?> 134 <input name="delete" type="submit" value="<?php echo _("Delete")." "._("Digital Receptionist")." {$ivr_details['displayname']}"; ?>" />134 <input name="delete" type="submit" value="<?php echo _("Delete")." "._("Digital Receptionist")." {$ivr_details['displayname']}"; ?>" disabled/> 135 135 <?php 136 136 } … … 289 289 <tr><td colspan=2> 290 290 291 <input name="increase" type="submit" value="<?php echo _("Increase Options")?>" >291 <input name="increase" type="submit" value="<?php echo _("Increase Options")?>" disabled> 292 292 293 <input name="Submit" type="submit" value="<?php echo _("Save")?>" tabindex="<?php echo ++$tabindex;?>" >293 <input name="Submit" type="submit" value="<?php echo _("Save")?>" tabindex="<?php echo ++$tabindex;?>" disabled> 294 294 295 295 <?php if ($nbroptions > 1) { ?> 296 <input name="decrease" type="submit" value="<?php echo _("Decrease Options")?>" >296 <input name="decrease" type="submit" value="<?php echo _("Decrease Options")?>" disabled> 297 297 <?php } ?> 298 298 </td> … … 326 326 echo $module_hook->hookHtml; 327 327 ?> 328 <input name="increase" type="submit" value="<?php echo _("Increase Options")?>" >328 <input name="increase" type="submit" value="<?php echo _("Increase Options")?>" disabled> 329 329 330 <input name="Submit" type="submit" value="<?php echo _("Save")?>" >330 <input name="Submit" type="submit" value="<?php echo _("Save")?>" disabled> 331 331 332 332 <?php if ($nbroptions > 1) { ?> 333 <input name="decrease" type="submit" value="<?php echo _("Decrease Options")?>" >333 <input name="decrease" type="submit" value="<?php echo _("Decrease Options")?>" disabled> 334 334 <?php } ?> 335 335 336 336 <script language="javascript"> 337 337 <!-- 338 338 $(document).ready(function() { 339 $(':submit:disabled').removeAttr('disabled'); 340 }); 339 341 var theForm = document.prompt; 340 342 theForm.displayname.focus();
