X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_input.inc;h=a2355cfb02ee4f34c8823d65c63a1feb6910f539;hb=310a0d3ae5aeacbdaa0069546cc2652ac7518e6b;hp=091a874c7852e8ca7df09606f2e86e40522cf907;hpb=d5f7c2099d1dc612e651722e5843329bd8314863;p=fa-stable.git diff --git a/includes/ui/ui_input.inc b/includes/ui/ui_input.inc index 091a874c..a2355cfb 100644 --- a/includes/ui/ui_input.inc +++ b/includes/ui/ui_input.inc @@ -231,6 +231,11 @@ function submit_return($name, $value, $title=false, $async=false) submit($name, $value, true, $title, $async); } } + +function submit_js_confirm($name, $msg) { + add_js_source( + "_validate.$name=function(){ return confirm('$msg');};"); +}; //----------------------------------------------------------------------------------- function set_icon($icon, $title=false) @@ -260,7 +265,7 @@ function button($name, $value, $title=false, $icon=false) function button_cell($name, $value, $title=false, $icon=false) { - echo ""; + echo ""; echo button($name, $value, $title, $icon); echo ""; } @@ -315,11 +320,12 @@ function check($label, $name, $value=null, $submit_on_change=false, $title=false echo checkbox($label, $name, $value, $submit_on_change, $title); } -function check_cells($label, $name, $value, $submit_on_change=false, $title=false) +function check_cells($label, $name, $value, $submit_on_change=false, $title=false, + $params='') { if ($label != null) echo "$label\n"; - echo ""; + echo ""; echo check(null, $name, $value, $submit_on_change, $title); echo ""; } @@ -754,7 +760,7 @@ function text_row_with_submit($label, $name, $value, $size, $max, $input_name, $ // displays value of inactive field as checkbox cell. // Also updates database record after status change. // -function inactive_status_cell($id, $value, $table, $key) +function inactive_control_cell($id, $value, $table, $key) { global $Ajax; @@ -766,14 +772,14 @@ function inactive_status_cell($id, $value, $table, $key) get_post('Update')) && (check_value('Inactive'.$id) != $value)) { update_record_status($id, !$value, $table, $key); } - echo ''. checkbox(null, $name, $value, true, '') + echo ''. checkbox(null, $name, $value, true, '', "align='center'") . hidden("LInact[$id]", $value, false) . ''; } } // // Displays controls for optional display of inactive records // -function show_inactive_row($th) { +function inactive_control_row($th) { echo "" ."
" . checkbox(null, 'show_inactive', null, true). _("Show also Inactive") @@ -781,5 +787,16 @@ function show_inactive_row($th) { . submit('Update', _('Update'), false, '', null) ."
"; } - +// +// Inserts additional column header when display of inactive records is on. +// +function inactive_control_column(&$th) { + global $Ajax; + + if (check_value('show_inactive')) + array_insert($th, count($th)-2 , _("Inactive")); + if (get_post('_show_inactive_update')) { + $Ajax->activate('_page_body'); + } +} ?> \ No newline at end of file