Allowed optional long timeout on defualt/cancel/selector buttons.
[fa-stable.git] / includes / ui / ui_input.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 //
13 // Sets local POST value and adds Value to ajax posting if needed
14 //
15 /*function set_post($name, $value, $ajax_trigger=true) {
16     global $Ajax;
17
18     $_POST[$name] = $value;
19     if ($ajax_trigger) $Ajax->activate($name);
20 }
21 */
22 //------------------------------------------------------------------------------
23 //    Seek for _POST variable with $prefix.
24 //    If var is found returns variable name with prefix stripped,
25 //    and null or -1 otherwise.
26 //
27 function find_submit($prefix, $numeric=true)
28 {
29
30     foreach($_POST as $postkey=>$postval )
31     {
32                 if (strpos($postkey, $prefix) === 0)
33                 {
34                         $id = substr($postkey, strlen($prefix));
35                         return $numeric ? (int)$id : $id;
36                 }
37     }
38     return $numeric ? -1 : null;
39 }
40 //------------------------------------------------------------------------------
41 //
42 // Helper function for simple db table editor pages
43 //
44 function simple_page_mode($numeric_id = true)
45 {
46         global $Ajax, $Mode, $selected_id;
47
48         $default = $numeric_id ? -1 : '';
49         $selected_id = get_post('selected_id', $default);
50         foreach (array('ADD_ITEM', 'UPDATE_ITEM', 'RESET', 'CLONE') as $m) {
51                 if (isset($_POST[$m])) {
52                         $Ajax->activate('_page_body');
53                         if ($m == 'RESET'  || $m == 'CLONE') 
54                                 $selected_id = $default;
55                         unset($_POST['_focus']);
56                         $Mode = $m; return;
57                 }
58         }
59         foreach (array('Edit', 'Delete') as $m) {
60                 foreach ($_POST as $p => $pvar) {
61                         if (strpos($p, $m) === 0) {
62 //                              $selected_id = strtr(substr($p, strlen($m)), array('%2E'=>'.'));
63                                 unset($_POST['_focus']); // focus on first form entry
64                                 $selected_id = quoted_printable_decode(substr($p, strlen($m)));
65                                 $Ajax->activate('_page_body');
66                                 $Mode = $m;
67                                 return;
68                         }
69                 }
70         }
71         $Mode = '';
72 }
73
74 //------------------------------------------------------------------------------
75 //
76 //      Read numeric value from user formatted input
77 //
78 function input_num($postname=null, $dflt=0)
79 {
80         if (!isset($_POST[$postname]) || $_POST[$postname] == "")
81                 return $dflt;
82
83     return user_numeric($_POST[$postname]);
84 }
85
86 //---------------------------------------------------------------------------------
87
88 function hidden($name, $value=null, $echo=true)
89 {
90         global $Ajax;
91         
92         if ($value === null) 
93                 $value = get_post($name);
94         
95         $ret = "<input type=\"hidden\" name=\"$name\" value=\"$value\">";
96         $Ajax->addUpdate($name, $name, $value);
97         if ($echo)
98                 echo $ret."\n";
99         else
100                 return $ret;
101 }
102 /*
103         Universal submit form button.
104         $atype - type of submit:
105          Normal submit:
106                 false - normal button; optional icon
107                 null  - button visible only in fallback mode; optional icon
108          Ajax submit:
109                 true      - standard button; optional icon
110
111                 'default' - default form submit on Ctrl-Enter press; dflt ICON_OK icon
112                 'selector' - ditto with closing current popup editor window
113                 'cancel'  - cancel form entry on Escape press; dflt ICON_CANCEL
114                 'process' - displays progress bar during call; optional icon
115
116         $atype can contain also multiply type selectors separated by space, 
117         however make sense only combination of 'process' and one of defualt/selector/cancel
118 */
119 function submit($name, $value, $echo=true, $title=false, $atype=false, $icon=false)
120 {
121         global $path_to_root;
122
123         $aspect='';
124         if ($atype === null) {
125                 $aspect = fallback_mode() ? " aspect='fallback'" : " style='display:none;'";
126
127         } elseif (!is_bool($atype)) { // necessary: switch uses '=='
128
129                 $aspect = "aspect='$atype' ";
130                 $types = explode(' ', $atype);
131
132                 foreach ($types as $type) {
133                         switch($type) {
134                                 case 'selector':
135                                         $aspect = " aspect='selector' rel = '$value'"; 
136                                         $value = _("Select");
137                                         if ($icon===false) $icon=ICON_SUBMIT; break;
138
139                                 case 'default':
140                                         if ($icon===false) $icon=ICON_SUBMIT; break;
141
142                                 case 'cancel':
143                                         if ($icon===false) $icon=ICON_ESCAPE; break;
144                         }
145                 }
146         }
147         $submit_str = "<button class=\""
148             .($atype ? 'ajaxsubmit' : 'inputsubmit')
149                 ."\" type=\"submit\""
150                 .$aspect
151             ." name=\"$name\"  id=\"$name\" value=\"$value\""
152             .($title ? " title='$title'" : '')
153             .">"
154                 .($icon ? "<img src='$path_to_root/themes/".user_theme()."/images/$icon' height='12'>" : '')
155                 ."<span>$value</span>"
156                 ."</button>\n";
157         if ($echo)
158                 echo $submit_str;
159         else
160                 return $submit_str;
161 }
162
163 function submit_center($name, $value, $echo=true, $title=false, $async=false, $icon=false)
164 {
165         if ($echo) echo "<center>";
166         submit($name, $value, $echo, $title, $async, $icon);
167         if ($echo) echo "</center>";
168 }
169
170 function submit_center_first($name, $value, $title=false, $async=false, $icon=false)
171 {
172         echo "<center>";
173         submit($name, $value, true, $title, $async, $icon);
174         echo "&nbsp;";
175 }
176
177 function submit_center_last($name, $value, $title=false, $async=false, $icon=false)
178 {
179         echo "&nbsp;";
180         submit($name, $value, true, $title, $async, $icon);
181         echo "</center>";
182 }
183 /*
184         For following controls:
185         'both' - use both Ctrl-Enter and Escape hotkeys 
186         'cancel' - apply to 'RESET' button
187 */
188 function submit_add_or_update($add=true, $title=false, $async=false, $clone=false)
189 {
190         $cancel = $async;
191
192         if ($async === 'both') {
193                 $async = 'default'; $cancel = 'cancel';
194         } 
195         else if ($async === 'default')
196                 $cancel = true;
197         else if ($async === 'cancel')
198                 $async = true;
199         
200         if ($add)
201                 submit('ADD_ITEM', _("Add new"), true, $title, $async);
202         else {
203                 submit('UPDATE_ITEM', _("Update"), true, _('Submit changes'), $async);
204                 if ($clone) submit('CLONE', _("Clone"), true, 
205                         _('Edit new record with current data'), $async);
206                 submit('RESET', _("Cancel"), true, _('Cancel edition'), $cancel);
207         }
208 }
209
210 function submit_add_or_update_center($add=true, $title=false, $async=false, $clone=false)
211 {
212         echo "<center>";
213         submit_add_or_update($add, $title, $async, $clone);
214         echo "</center>";
215 }
216
217 function submit_add_or_update_row($add=true, $right=true, $extra="", $title=false, $async=false, $clone = false)
218 {
219         echo "<tr>";
220         if ($right)
221                 echo "<td>&nbsp;</td>\n";
222         echo "<td $extra>";
223         submit_add_or_update($add, $title, $async, $clone);
224         echo "</td></tr>\n";
225 }
226
227 function submit_cells($name, $value, $extra="", $title=false, $async=false)
228 {
229         echo "<td $extra>";
230         submit($name, $value, true, $title, $async);
231         echo "</td>\n";
232 }
233
234 function submit_row($name, $value, $right=true, $extra="", $title=false, $async=false)
235 {
236         echo "<tr>";
237         if ($right)
238                 echo "<td>&nbsp;</td>\n";
239         submit_cells($name, $value, $extra, $title, $async);
240         echo "</tr>\n";
241 }
242
243 function submit_return($name, $value, $title=false)
244 {
245         if (@$_REQUEST['popup']) {
246                 submit($name, $value, true, $title, 'selector');
247         }
248 }
249
250 function submit_js_confirm($name, $msg) {
251         add_js_source(
252                 "_validate.$name=function(){ return confirm('"
253                         . strtr($msg, array("\n"=>'\\n')) . "');};");
254 };
255 //-----------------------------------------------------------------------------------
256
257 function set_icon($icon, $title=false)
258 {
259         global $path_to_root;
260         return "<img src='$path_to_root/themes/".user_theme()."/images/$icon' width='12' height='12' border='0'".($title ? " title='$title'" : "")." />\n";     
261 }
262
263 function button($name, $value, $title=false, $icon=false,  $aspect='')
264 {
265         // php silently changes dots,spaces,'[' and characters 128-159
266         // to underscore in POST names, to maintain compatibility with register_globals
267         $rel = '';
268         if ($aspect == 'selector') {
269                 $rel = " rel='$value'";
270                 $value = _("Select");
271         }
272         if (user_graphic_links() && $icon)
273         {
274                 if ($value == _("Delete")) // Helper during implementation
275                         $icon = ICON_DELETE;
276                 return "<button type='submit' class='editbutton' name='".
277                         htmlentities(strtr($name, array('.'=>'=2E',' '=>'=20','='=>'=3D','['=>'=5B'))).
278                         "' value='1'" . ($title ? " title='$title'":" title='$value'")
279                         . ($aspect ? " aspect='$aspect'" : '')
280                         . $rel
281                         ." />".set_icon($icon)."</button>\n";
282         }
283         else
284                 return "<input type='submit' class='editbutton' name='"
285                         .htmlentities(strtr($name, array('.'=>'=2E',' '=>'=20','='=>'=3D','['=>'=5B')))
286                         ."' value='$value'"
287                         .($title ? " title='$title'":'')
288                         . ($aspect ? " aspect='$aspect'" : '')
289                         . $rel
290                         ." />\n";
291 }
292
293 function button_cell($name, $value, $title=false, $icon=false, $aspect='')
294 {
295         echo "<td align='center'>";
296         echo button($name, $value, $title, $icon, $aspect);
297         echo "</td>";
298 }
299
300 function delete_button_cell($name, $value, $title=false)
301 {
302         button_cell($name, $value, $title, ICON_DELETE);
303 }
304
305 function edit_button_cell($name, $value, $title=false)
306 {
307         button_cell($name, $value, $title, ICON_EDIT);
308 }
309
310 function select_button_cell($name, $value, $title=false)
311 {
312         button_cell($name, $value, $title, ICON_ADD, 'selector');
313 }
314 //-----------------------------------------------------------------------------------
315
316 function check_value($name)
317 {
318         if (!isset($_POST[$name]))
319                 return 0;
320         return 1;
321 }
322
323 function checkbox($label, $name, $value=null, $submit_on_change=false, $title=false)
324 {
325         global $Ajax;
326
327         $str = '';      
328
329         if ($label)
330                 $str .= $label . "  ";
331         if ($submit_on_change !== false) {
332                 if ($submit_on_change === true)
333                         $submit_on_change = 
334                                 "JsHttpRequest.request(\"_{$name}_update\", this.form);";
335         }
336         if ($value === null)
337                 $value = get_post($name,0);
338
339         $str .= "<input"
340             .($value == 1 ? ' checked':'')
341             ." type='checkbox' name='$name' value='1'"
342             .($submit_on_change ? " onclick='$submit_on_change'" : '')
343             .($title ? " title='$title'" : '')
344             ." >\n";
345
346         $Ajax->addUpdate($name, $name, $value);
347         return $str;
348 }
349
350 function check($label, $name, $value=null, $submit_on_change=false, $title=false)
351 {
352         echo checkbox($label, $name, $value, $submit_on_change, $title);
353 }
354
355 function check_cells($label, $name, $value=null, $submit_on_change=false, $title=false,
356         $params='')
357 {
358         if ($label != null)
359                 echo "<td>$label</td>\n";
360         echo "<td $params>";
361         echo check(null, $name, $value, $submit_on_change, $title);
362         echo "</td>";
363 }
364
365 function check_row($label, $name, $value=null, $submit_on_change=false, $title=false)
366 {
367         echo "<tr><td class='label'>$label</td>";
368         echo check_cells(NULL, $name, $value, $submit_on_change, $title);
369         echo "</tr>\n";
370 }
371
372 //-----------------------------------------------------------------------------------
373
374 function labelheader_cell($label, $params="")
375 {
376         echo "<td class='tableheader' $params>$label</td>\n";
377 }
378
379 function label_cell($label, $params="", $id=null)
380 {
381     global $Ajax;
382
383         if(isset($id))
384         {
385             $params .= " id='$id'";
386             $Ajax->addUpdate($id, $id, $label);
387         }
388         echo "<td $params>$label</td>\n";
389
390         return $label;
391 }
392
393 function email_cell($label, $params="", $id=null)
394 {
395         label_cell("<a href='mailto:$label'>$label</a>", $params, $id);
396 }
397
398 function amount_decimal_cell($label, $params="", $id=null)
399 {
400         $dec = 0;
401         label_cell(price_decimal_format($label, $dec), "nowrap align=right ".$params, $id);
402 }
403
404 function amount_cell($label, $bold=false, $params="", $id=null)
405 {
406         if ($bold)
407                 label_cell("<b>".price_format($label)."</b>", "nowrap align=right ".$params, $id);
408         else
409                 label_cell(price_format($label), "nowrap align=right ".$params, $id);
410 }
411
412 //JAM  Allow entered unit prices to be fractional
413 function unit_amount_cell($label, $bold=false, $params="", $id=null)
414 {
415         if ($bold)
416                 label_cell("<b>".unit_price_format($label)."</b>", "nowrap align=right ".$params, $id);
417         else
418                 label_cell(unit_price_format($label), "nowrap align=right ".$params, $id);
419 }
420
421
422 function percent_cell($label, $bold=false, $id=null)
423 {
424         if ($bold)
425                 label_cell("<b>".percent_format($label)."</b>", "nowrap align=right", $id);
426         else
427                 label_cell(percent_format($label), "nowrap align=right", $id);
428 }
429 // 2008-06-15. Changed
430 function qty_cell($label, $bold=false, $dec=null, $id=null)
431 {
432         if (!isset($dec))
433                 $dec = get_qty_dec();
434         if ($bold)
435                 label_cell("<b>".number_format2($label, $dec)."</b>", "nowrap align=right", $id);
436         else
437                 label_cell(number_format2($label, $dec), "nowrap align=right", $id);
438 }
439
440 function label_cells($label, $value, $params="", $params2="", $id='')
441 {
442         if ($label != null)
443                 echo "<td $params>$label</td>\n";
444         label_cell($value, $params2, $id);
445 }
446
447 function label_row($label, $value, $params="", $params2="", $leftfill=0, $id='')
448 {
449         echo "<tr>";
450         if ($params == "")
451         {
452                 echo "<td class='label'>$label</td>";
453                 $label = null;
454         }       
455         label_cells($label, $value, $params, $params2, $id);
456         if ($leftfill!=0)
457                 echo "<td colspan=$leftfill></td>";
458         echo "</tr>\n";
459 }
460
461 //-----------------------------------------------------------------------------------
462
463 function text_cells($label, $name, $value=null, $size="", $max="", $title=false, 
464         $labparams="", $post_label="", $inparams="")
465 {
466         global $Ajax;
467
468         default_focus($name);
469         if ($label != null)
470                 label_cell($label, $labparams);
471         echo "<td>";
472
473         if ($value === null)
474                 $value = get_post($name);
475         echo "<input $inparams type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"$value\""
476             .($title ? " title='$title'" : '')
477             .">";
478
479         if ($post_label != "")
480                 echo " " . $post_label;
481
482         echo "</td>\n";
483         $Ajax->addUpdate($name, $name, $value);
484 }
485
486 function text_cells_ex($label, $name, $size, $max=null, $init=null, $title=null,
487         $labparams=null, $post_label=null, $submit_on_change=false)
488 {
489         global $Ajax;
490
491         default_focus($name);
492         if (!isset($_POST[$name]) || $_POST[$name] == "")
493         {
494                 if ($init)
495                         $_POST[$name] = $init;
496                 else
497                         $_POST[$name] = "";
498         }
499         if ($label != null)
500                 label_cell($label, $labparams);
501
502         if (!isset($max))
503                 $max = $size;
504
505         echo "<td>";
506         $class = $submit_on_change ? 'class="searchbox"' : '';
507         echo "<input $class type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"" . $_POST[$name]. "\""
508          .($title ? " title='$title'": '')." >";
509
510         if ($post_label)
511                 echo " " . $post_label;
512
513         echo "</td>\n";
514         $Ajax->addUpdate($name, $name, $_POST[$name]);
515 }
516
517 function text_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
518 {
519         echo "<tr><td class='label'>$label</td>";
520         text_cells(null, $name, $value, $size, $max, $title, $params, $post_label);
521
522         echo "</tr>\n";
523 }
524
525 //-----------------------------------------------------------------------------------
526
527 function text_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
528 {
529         echo "<tr><td class='label'>$label</td>";
530         text_cells_ex(null, $name, $size, $max, $value, $title, $params, $post_label);
531
532         echo "</tr>\n";
533 }
534
535 //-----------------------------------------------------------------------------------
536 function email_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
537 {
538         if (get_post($name)) 
539                 $label = "<a href='Mailto:".$_POST[$name]."'>$label</a>";
540         text_row($label, $name, $value, $size, $max, $title, $params, $post_label);
541 }
542
543 function email_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
544 {
545         if (get_post($name)) 
546                 $label = "<a href='Mailto:".$_POST[$name]."'>$label</a>";
547         text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label);
548 }
549
550 function link_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
551 {
552         $val = get_post($name);
553         if ($val) {
554                 if (strpos($val,'http://')===false)
555                         $val = 'http://'.$val;
556                 $label = "<a href='$val' target='_blank'>$label</a>";
557         }
558         text_row($label, $name, $value, $size, $max, $title, $params, $post_label);
559 }
560
561 function link_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
562 {
563         $val = get_post($name);
564         if ($val) {
565                 if (strpos($val,'http://')===false)
566                         $val = 'http://'.$val;
567                 $label = "<a href='$val' target='_blank'>$label</a>";
568         }
569         text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label);
570 }
571
572 //-----------------------------------------------------------------------------------
573 //
574 //      Since FA 2.2  $init parameter is superseded by $check. 
575 //  When $check!=null current date is displayed in red when set to other 
576 //      than current date.
577 //      
578 function date_cells($label, $name, $title = null, $check=null, $inc_days=0, 
579         $inc_months=0, $inc_years=0, $params=null, $submit_on_change=false)
580 {
581         global $use_date_picker, $path_to_root, $Ajax;
582
583         if (!isset($_POST[$name]) || $_POST[$name] == "")
584         {
585                 if ($inc_years == 1001)
586                         $_POST[$name] = null;
587                 else
588                 {
589                         $dd = Today();
590                         if ($inc_days != 0)
591                                 $dd = add_days($dd, $inc_days);
592                         if ($inc_months != 0)
593                                 $dd = add_months($dd, $inc_months);
594                         if ($inc_years != 0)
595                                 $dd = add_years($dd, $inc_years);
596                         $_POST[$name] = $dd;
597                 }
598         }
599         if ($use_date_picker)
600                 $post_label = "<a tabindex='-1' href=\"javascript:date_picker(document.getElementsByName('$name')[0]);\">"
601                 . "     <img src='$path_to_root/themes/default/images/cal.gif' width='16' height='16' border='0' alt='"._('Click Here to Pick up the date')."'></a>\n";
602         else
603                 $post_label = "";
604
605         if ($label != null)
606                 label_cell($label, $params);
607
608         echo "<td>";
609         
610         $class = $submit_on_change ? 'class="searchbox"' : '';
611
612         $aspect = $check ? 'aspect="cdate"' : '';
613         if ($check && (get_post($name) != Today()))
614                 $aspect .= ' style="color:#FF0000"';
615
616         default_focus($name);
617
618         echo "<input type=\"text\" name=\"$name\" $class $aspect size=\"9\" maxlength=\"12\" value=\"" 
619          . $_POST[$name]. "\""
620          .($title ? " title='$title'": '')." > $post_label";
621         echo "</td>\n";
622         $Ajax->addUpdate($name, $name, $_POST[$name]);
623 }
624
625 function date_row($label, $name, $title=null, $check=null, $inc_days=0, $inc_months=0, 
626         $inc_years=0, $params=null, $submit_on_change=false)
627 {
628         echo "<tr><td class='label'>$label</td>";
629         date_cells(null, $name, $title, $check, $inc_days, $inc_months, 
630                 $inc_years, $params, $submit_on_change);
631         echo "</tr>\n";
632 }
633
634 //-----------------------------------------------------------------------------------
635 function password_row($label, $name, $value)
636 {
637         echo "<tr><td class='label'>$label</td>";
638         label_cell("<input type='password' name='$name' size=20 maxlength=20 value='$value' />");
639         echo "</tr>\n";
640 }       
641
642 //-----------------------------------------------------------------------------------
643 function file_cells($label, $name, $id="")
644 {
645         if ($id != "")
646                 $id = "id='$id'";
647         label_cells($label, "<input type='file' name='$name' $id />");
648 }               
649 function file_row($label, $name, $id = "")
650 {
651         echo "<tr><td class='label'>$label</td>";
652         file_cells(null, $name, $id);
653         echo "</tr>\n";
654 }       
655
656 //-----------------------------------------------------------------------------------
657
658 function ref_cells($label, $name, $title=null, $init=null, $params=null, $submit_on_change=false)
659 {
660         text_cells_ex($label, $name, 16, 18, $init, $title, $params, null, $submit_on_change);
661 }
662
663 //-----------------------------------------------------------------------------------
664
665 function ref_row($label, $name, $title=null, $init=null, $submit_on_change=false)
666 {
667         echo "<tr><td class='label'>$label</td>";
668         ref_cells(null, $name, $title, $init, null, $submit_on_change);
669         echo "</tr>\n";
670 }
671
672 //-----------------------------------------------------------------------------------
673
674 function percent_row($label, $name, $init=null)
675 {
676
677         if (!isset($_POST[$name]) || $_POST[$name]=="")
678         {
679                 $_POST[$name] = $init == null ? '' : $init;
680         }
681
682         small_amount_row($label, $name, $_POST[$name], null, "%", user_percent_dec());
683 }
684
685 function amount_cells_ex($label, $name, $size, $max=null, $init=null, $params=null, $post_label=null, $dec=null)
686 {
687         global $Ajax;
688
689         if (!isset($dec))
690                 $dec = user_price_dec();
691         if (!isset($_POST[$name]) || $_POST[$name] == "")
692         {
693                 if ($init !== null)
694                         $_POST[$name] = $init;
695                 else
696                         $_POST[$name] = '';
697         }
698         if ($label != null)
699         {
700                 if ($params == null)
701                         $params = "class='label'";
702                 label_cell($label, $params);
703         }
704         if (!isset($max))
705                 $max = $size;
706
707         if ($label != null)
708                 echo "<td>";
709         else
710                 echo "<td align='right'>";
711
712         echo "<input class='amount' type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" dec=\"$dec\" value=\"" . $_POST[$name]. "\">";
713
714         if ($post_label) {
715                 echo "<span id='_{$name}_label'> $post_label</span>";
716                 $Ajax->addUpdate($name, '_'.$name.'_label', $post_label);
717         }
718         echo "</td>\n";
719         $Ajax->addUpdate($name, $name, $_POST[$name]);
720         $Ajax->addAssign($name, $name, 'dec', $dec);
721 }
722
723
724 //-----------------------------------------------------------------------------------
725
726 function amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
727 {
728         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
729 }
730
731 //JAM  Allow entered unit prices to be fractional
732 function unit_amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
733 {
734         if (!isset($dec))
735                 $dec = user_price_dec()+2;
736
737         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec+2);
738 }
739
740 function amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
741 {
742         echo "<tr>";
743         amount_cells($label, $name, $init, $params, $post_label, $dec);
744         echo "</tr>\n";
745 }
746
747 function small_amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
748 {
749         echo "<tr>";
750         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
751         echo "</tr>\n";
752 }
753
754 //-----------------------------------------------------------------------------------
755
756 function qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
757 {
758         if (!isset($dec))
759                 $dec = user_qty_dec();
760
761         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
762 }
763
764 function qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
765 {
766         if (!isset($dec))
767                 $dec = user_qty_dec();
768
769         echo "<tr>";
770         amount_cells($label, $name, $init, $params, $post_label, $dec);
771         echo "</tr>\n";
772 }
773
774 function small_qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
775 {
776         if (!isset($dec))
777                 $dec = user_qty_dec();
778
779         echo "<tr>";
780         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
781         echo "</tr>\n";
782 }
783
784 //-----------------------------------------------------------------------------------
785
786 function small_amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
787 {
788         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
789 }
790
791 //-----------------------------------------------------------------------------------
792
793 function small_qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
794 {
795         if (!isset($dec))
796                 $dec = user_qty_dec();
797         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
798 }
799
800 //-----------------------------------------------------------------------------------
801
802 function textarea_cells($label, $name, $value, $cols, $rows, $title = null, $params="")
803 {
804         global $Ajax;
805
806         default_focus($name);
807         if ($label != null)
808                 echo "<td $params>$label</td>\n";
809         if ($value == null)
810                 $value = (!isset($_POST[$name]) ? "" : $_POST[$name]);
811         echo "<td><textarea name='$name' cols='$cols' rows='$rows'"
812         .($title ? " title='$title'" : '')
813         .">$value</textarea></td>\n";
814         $Ajax->addUpdate($name, $name, $value);
815 }
816
817 function textarea_row($label, $name, $value, $cols, $rows, $title=null, $params="")
818 {
819         echo "<tr><td class='label'>$label</td>";
820         textarea_cells(null, $name, $value, $cols, $rows, $title, $params);
821         echo "</tr>\n";
822 }
823
824 //-----------------------------------------------------------------------------------
825 /*
826 function text_row_with_submit($label, $name, $value, $size, $max, $input_name, $input_value)
827 {
828         global $Ajax;
829
830         default_focus($name);
831         echo "<tr><td>$label</td>\n";
832         echo "<td>";
833
834         if ($value == null)
835                 $value = (!isset($_POST[$name]) ? "" : $_POST[$name]);
836         echo "<input type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"$value\">   ";
837
838         submit($input_name, $input_value);
839
840         echo "</td></tr>\n";
841         $Ajax->addUpdate($name, $name, $value);
842 }
843 */
844 //-----------------------------------------------------------------------------------
845 //
846 //      When show_inactive page option is set 
847 //  displays value of inactive field as checkbox cell.
848 //  Also updates database record after status change.
849 //
850 function inactive_control_cell($id, $value, $table, $key)
851 {
852         global  $Ajax;
853
854         $name = "Inactive". $id;
855         $value = $value ? 1:0;
856
857         if (check_value('show_inactive')) {
858                 if (isset($_POST['LInact'][$id]) && (get_post('_Inactive'.$id.'_update') || 
859                         get_post('Update')) && (check_value('Inactive'.$id) != $value)) {
860                         update_record_status($id, !$value, $table, $key);
861                 }
862                 echo '<td align="center">'. checkbox(null, $name, $value, true, '', "align='center'")
863                         . hidden("LInact[$id]", $value, false) . '</td>';       
864         }
865 }
866 //
867 //      Displays controls for optional display of inactive records
868 //
869 function inactive_control_row($th) {
870         echo  "<tr><td colspan=".(count($th)).">"
871                 ."<div style='float:left;'>"
872                 . checkbox(null, 'show_inactive', null, true). _("Show also Inactive")
873                 ."</div><div style='float:right;'>"
874                 . submit('Update', _('Update'), false, '', null)
875                 ."</div></td></tr>";
876 }
877 //
878 //      Inserts additional column header when display of inactive records is on.
879 //
880 function inactive_control_column(&$th) {
881         global $Ajax;
882         
883         if (check_value('show_inactive')) 
884                 array_insert($th, count($th)-2 , _("Inactive"));
885         if (get_post('_show_inactive_update')) {
886                 $Ajax->activate('_page_body');
887         }
888 }
889 ?>