Changeset 205 for trunk/phpbms/modules/base/tabledefs_searchfields.php
- Timestamp:
- 03/26/07 16:50:25 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/base/tabledefs_searchfields.php
r204 r205 102 102 <table border="0" cellpadding="0" cellspacing="0" class="querytable"> 103 103 <tr> 104 <th align="left" nowrap class="queryheader">move</th>105 <th align="center" nowrap class="queryheader">type</th>106 <th align="left" nowrap class="queryheader">name</th>107 <th align="left" width="100%" nowrap class="queryheader">field</th>104 <th align="left" nowrap="nowrap" class="queryheader">move</th> 105 <th align="center" nowrap="nowrap" class="queryheader">type</th> 106 <th align="left" nowrap="nowrap"class="queryheader">name</th> 107 <th align="left" width="100%" nowrap="nowrap" class="queryheader">field</th> 108 108 <th nowrap class="queryheader"> </th> 109 109 </tr> … … 116 116 ?> 117 117 <tr class="qr<?php echo $row?> noselects"> 118 <td nowrap valign="top" class="small">118 <td nowrap="nowrap" valign="top" class="small"> 119 119 <button type="button" class="graphicButtons buttonUp" onclick="document.location='<?php echo $_SERVER["PHP_SELF"]."?id=".$_GET["id"]."&command=moveup&columnid=".$therecord["id"]?>';"><span>up</span></button> 120 120 <button type="button" class="graphicButtons buttonDown" onclick="document.location='<?php echo $_SERVER["PHP_SELF"]."?id=".$_GET["id"]."&command=movedown&columnid=".$therecord["id"]?>';"><span>dn</span></button> 121 121 <?php echo $therecord["displayorder"]?> 122 122 </td> 123 <td nowrap valign="top" class="small" align="center"><strong><?php echo htmlQuotes($therecord["type"]);?></strong></td>124 <td nowrap valign="top" class="small"><strong><?php echo htmlQuotes($therecord["name"])?></strong></td>123 <td nowrap="nowrap" valign="top" class="small" align="center"><strong><?php echo htmlQuotes($therecord["type"]);?></strong></td> 124 <td nowrap="nowrap" valign="top" class="small"><strong><?php echo htmlQuotes($therecord["name"])?></strong></td> 125 125 <td valign="top"><?php echo htmlQuotes($therecord["field"])?></td> 126 <td nowrap valign="top">126 <td nowrap="nowrap" valign="top"> 127 127 <button id="edit<?php echo $therecord["id"]?>" type="button" onclick="document.location='<?php echo $_SERVER["PHP_SELF"]."?id=".$_GET["id"]."&command=edit&searchfieldid=".$therecord["id"]?>';" class="graphicButtons buttonEdit"><span>edit</span></button> 128 128 <button id="delete<?php echo $therecord["id"]?>" type="button" onclick="document.location='<?php echo $_SERVER["PHP_SELF"]."?id=".$_GET["id"]."&command=delete&searchfieldid=".$therecord["id"]?>';" class="graphicButtons buttonDelete"><span>delete</span></button> … … 141 141 <fieldset> 142 142 <legend><?php echo $action?></legend> 143 <form action="<?php echo $_SERVER["PHP_SELF"]."?id=".$_GET["id"] ?>" method="post" name="record" on Submit="return validateForm(this);">143 <form action="<?php echo $_SERVER["PHP_SELF"]."?id=".$_GET["id"] ?>" method="post" name="record" onsubmit="return validateForm(this);"> 144 144 <input id="searchfieldid" name="searchfieldid" type="hidden" value="<?php echo $thesearchfield["id"]?>" /> 145 145 <input id="displayorder" name="displayorder" type="hidden" value="<?php if($action=="add search field") echo $topdisplayorder+1; else echo $thesearchfield["displayorder"]?>" />