Changeset 711 for trunk/phpbms/include/search_class.php
- Timestamp:
- 01/04/10 17:42:17 (2 years ago)
- Files:
-
- 1 modified
-
trunk/phpbms/include/search_class.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/include/search_class.php
r705 r711 612 612 613 613 <label for="find">find</label><br /> 614 <select name="find" id="find" >614 <select name="find" id="find" tabindex="1"> 615 615 <?php 616 616 … … 638 638 639 639 <label for="startswithfield">where</label><br /> 640 <select name="startswithfield" id="startswithfield" >640 <select name="startswithfield" id="startswithfield" tabindex="1"> 641 641 <?php 642 642 … … 665 665 666 666 <p id="bstSearchButtonP" class="big"> 667 <input name="command" id="searchbutton" type="submit" class="Buttons" value="search" />667 <input name="command" id="searchbutton" type="submit" class="Buttons" value="search" tabindex="2"/> 668 668 </p> 669 669 … … 671 671 672 672 <label for="startswith">starts with</label><br /> 673 <input id="startswith" name="startswith" type="text" value="<?php if($this->querytype=="search" and isset($this->savedstartswith)) echo formatVariable($this->savedstartswith) ?>" size="35" maxlength="128" />673 <input id="startswith" name="startswith" type="text" value="<?php if($this->querytype=="search" and isset($this->savedstartswith)) echo formatVariable($this->savedstartswith) ?>" size="35" maxlength="128" tabindex="1"/> 674 674 675 675 </p> … … 677 677 678 678 <p id="bstSelectionP"> 679 <select name="Selection" >679 <select name="Selection" tabindex="2"> 680 680 <option value="new" <?php if ($this->querytype!="search" or ($this->querytype=="search" and $this->savedselection=="new") ) echo "selected=\"selected\""?> >new result</option> 681 681 <option value="add" <?php if ($this->querytype=="search" and $this->savedselection=="add")echo "selected=\"selected\""?>>add to result</option> … … 686 686 687 687 <p id="bstResetButtonP"> 688 <input name="command" type="submit" id="reset" class="smallButtons" value="reset" accesskey="t" title="(access key+t)" />688 <input name="command" type="submit" id="reset" class="smallButtons" value="reset" accesskey="t" title="(access key+t)" tabindex="2"/> 689 689 </p> 690 690