Dalsi vylepseni formu + zlepseny radici algoritmus
authorThomas Mudrunka <tomas@mudrunka.cz>
Mon, 26 Mar 2012 19:01:26 +0000 (21:01 +0200)
committerThomas Mudrunka <tomas@mudrunka.cz>
Mon, 26 Mar 2012 19:01:26 +0000 (21:01 +0200)
index.php

index 2eea85a1f51e3e48802c75a79e44241d781bfbd6..c554f6dc273b89326756af37c0bce8ac865f41c7 100755 (executable)
--- a/index.php
+++ b/index.php
@@ -220,6 +220,7 @@ li a, a:hover { text-decoration:underline; }
 .item_status_deleted td { text-decoration:line-through; }
 .item_status_destroyed td { font-style:italic; }
 .floating_barcode { margin: 5px; }
+.disabled { color: grey; }
 /* table, table * { table-layout:fixed; width:100%; overflow:hidden; word-wrap:break-word; } */
 /* td { position:absolute; } */
 /* .cell_model_name { float:left; } */
@@ -497,7 +498,7 @@ EOF;
                                case (preg_match('/auto_increment/', $column['Extra']) || in_array($column['Field'], $hidecols)):
                                        if(is_bool($val) && !$val) $val = '';
                                        $html.=$this->input($name, $val, 'hidden');
-                                       $html.=$val.'(AUTO)';
+                                       $html.='<span class="disabled"><i>[AUTO]</i> '.$val.'</span>';
                                        break;
                                case isset($selectbox[$column['Field']]):
                                        $html.=$this->select($name,$selectbox[$column['Field']],$val);
@@ -728,8 +729,8 @@ class Sklad_DB extends PDO {
                }
                //echo('<pre>'); print_r($selectbox);
                //return array_filter($selectbox, 'ksort');
-               array_multisort($selectbox);
-               return $selectbox;
+               return array_filter($selectbox, 'natcasesort');
+               //array_multisort($selectbox); return $selectbox;
        }
 
        function map_unique($key, $value, $select, $table, $fatal=true) { //TODO: Guess $select and $table if not passed
This page took 0.145511 seconds and 4 git commands to generate.