Rewritten non-sql list selectors
[fa-stable.git] / includes / ui / ui_input.inc
index 8842fc537a0ae3f25781bea30027a7daaa2c3076..2dcd14e14aa23406ca57ecff765b5b6fe18d4c18 100644 (file)
@@ -179,11 +179,11 @@ function check($label, $name, $value, $submit_on_change=false, $title=false)
 
        if ($value == null)
                $value = (!isset($_POST[$name]) ? 0 : $_POST[$name]);
-       
+
                echo "<input"
                    .($value == 1 ? ' checked':'')
                    ." type='checkbox' name='$name' value='1'"
-                   .($submit_on_change ? " onclick='this.form.submit();'" : '')
+                   .($submit_on_change ? " onclick='JsHttpRequest.request(\"_{$name}_update\", this.form);'" : '')
                    .($title ? " title='$title'" : '')
                    ." >\n";
        $Ajax->addUpdate($name, $name, $value);
@@ -241,13 +241,15 @@ function percent_cell($label, $bold=false, $id=null)
        else
                label_cell(percent_format($label), "nowrap align=right", $id);
 }
-
+// 2008-06-15. Changed
 function qty_cell($label, $bold=false, $dec=null, $id=null)
 {
+       if ($dec == null)
+               $dec = get_qty_dec();
        if ($bold)
-               label_cell("<b>".qty_format($label, $dec)."</b>", "nowrap align=right", $id);
+               label_cell("<b>".number_format2($label, $dec)."</b>", "nowrap align=right", $id);
        else
-               label_cell(qty_format($label, $dec), "nowrap align=right", $id);
+               label_cell(number_format2($label, $dec), "nowrap align=right", $id);
 }
 
 function label_cells($label, $value, $params="", $params2="")
@@ -418,7 +420,7 @@ function amount_cells_ex($label, $name, $size, $max=null, $init=null, $params=nu
                $dec = user_price_dec();
        if (!isset($_POST[$name]) || $_POST[$name] == "")
        {
-               if ($init)
+               if ($init !== null)
                        $_POST[$name] = $init;
                else
                        $_POST[$name] = '';
@@ -438,6 +440,7 @@ function amount_cells_ex($label, $name, $size, $max=null, $init=null, $params=nu
 
        echo "</td>\n";
        $Ajax->addUpdate($name, $name, $_POST[$name]);
+       $Ajax->addAssign($name, $name, 'dec', $dec);
 }