Show
Ignore:
Timestamp:
07/05/08 21:58:08 (5 years ago)
Author:
mbrevda
Message:

#2845 add tabindex to all items except those called via drawlistmenu or drawselect or other hooks. also missed page.routing.php

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.5/core/page.zapchandids.php

    r5452 r5919  
    9191  <tr> 
    9292    <td><a href="#" class="info"><?php echo _("Channel")?>:<span><?php echo _("The Zap Channel number to map to a DID")?></span></a></td> 
    93     <td><input size="5" type="text" name="channel" value="<?php  echo $channel; ?>"></td> 
     93    <td><input size="5" type="text" name="channel" value="<?php  echo $channel; ?>" tabindex="<?php echo ++$tabindex;?>"></td> 
    9494  </tr> 
    9595<?php 
     
    9898  <tr> 
    9999    <td><a href="#" class="info"><?php echo _("Description")?>:<span><?php echo _("A useful description describing this channel")?></span></a></td> 
    100     <td><input size="40" type="text" name="description" value="<?php  echo $description; ?>"></td> 
     100    <td><input size="40" type="text" name="description" value="<?php  echo $description; ?>" tabindex="<?php echo ++$tabindex;?>"></td> 
    101101  </tr> 
    102102  <tr> 
    103103    <td><a href="#" class="info"><?php echo _("DID")?>:<span><?php echo _("The DID that this channel represents. The incoming call on this channel will be treated as if it came in with this DID and can be managed with Inbound Routing on DIDs")?></span></a></td> 
    104     <td><input size="40" type="text" name="did" value="<?php echo $did; ?>" /></td> 
     104    <td><input size="40" type="text" name="did" value="<?php echo $did; ?>" tabindex="<?php echo ++$tabindex;?>"/></td> 
    105105  </tr> 
    106106 
    107107  <tr> 
    108     <td colspan="2"><br><input name="Submit" type="submit" value="<?php echo _("Submit Changes")?>"
     108    <td colspan="2"><br><input name="Submit" type="submit" value="<?php echo _("Submit Changes")?>" tabindex="<?php echo ++$tabindex;?>"
    109109      <?php if ($extdisplay != '') { echo '&nbsp;<input name="delete" type="submit" onclick="actionDelete=true;" value="'._("Delete").'">'; } ?> 
    110110    </td>