From: <ex...@us...> - 2013-08-19 09:36:29
|
Revision: 6253 http://sourceforge.net/p/web-erp/reponame/6253 Author: exsonqu Date: 2013-08-19 09:36:26 +0000 (Mon, 19 Aug 2013) Log Message: ----------- 19/8/2013 Exson: Fixed the type error to class is integer. Reported by Tim. Modified Paths: -------------- trunk/SuppTransGLAnalysis.php Modified: trunk/SuppTransGLAnalysis.php =================================================================== --- trunk/SuppTransGLAnalysis.php 2013-08-19 08:43:50 UTC (rev 6252) +++ trunk/SuppTransGLAnalysis.php 2013-08-19 09:36:26 UTC (rev 6253) @@ -104,12 +104,12 @@ <table class="selection">'; $TableHeader = '<tr> - <th class="ascending" onclick="SortSelect(this)">' . _('Account') . '</th> - <th class="ascending" onclick="SortSelect(this)">' . _('Name') . '</th> - <th class="ascending" onclick="SortSelect(this)">' . _('Amount') . '<br />' . _('in') . ' ' . $_SESSION['SuppTrans']->CurrCode . '</th> + <th>' . _('Account') . '</th> + <th>' . _('Name') . '</th> + <th>' . _('Amount') . '<br />' . _('in') . ' ' . $_SESSION['SuppTrans']->CurrCode . '</th> <th>' . _('Narrative') . '</th> - <th class="ascending" onclick="SortSelect(this)">' . _('Tag') . '</th> - </tr>'; + <th>' . _('Tag') . '</th> + </tr>'; echo $TableHeader; $TotalGLValue=0; $i=0; @@ -187,7 +187,7 @@ echo '<tr> <td>' . _('Account Code') . ':</td> - <td><input type="text" pattern="[a-zA-Z0-9_\-]*{0,20}" title="'._('The input must be positive integer').'" name="GLCode" size="21" maxlength="20" value="' . $_POST['GLCode'] . '" /> + <td><input class="integer" pattern="[1-9][\d]{0,20}" title="'._('The input must be positive integer').'" placeholder="'._('Integer less than 20 digits').'" name="GLCode" size="21" maxlength="20" value="' . $_POST['GLCode'] . '" /> <input type="hidden" name="JobRef" value="" /></td> </tr>'; echo '<tr> |