Topic: How to change Textbox properties into Read only?
I'm using FA. Purchasing data entry, how to include/add "Read only" into reference textbox?
Thanks
(Towerfour)
It's much more fun, when you can discuss your problems with others...
You are not logged in. Please login or register.
FrontAccounting forum → FA Modifications → How to change Textbox properties into Read only?
I'm using FA. Purchasing data entry, how to include/add "Read only" into reference textbox?
Thanks
(Towerfour)
The file purchasing/includes/ui/po_ui.inc has a function display_po_header() that does the job. Reference is generally editable on new data entry only and not available to be editable afterwards (line 117). Lines 177 to 182:
if ($editable)
{
ref_row(_("Reference:"), 'ref');
}
else
{
hidden('ref', $order->reference);
label_row(_("Reference:"), $order->reference);
}
provide the form elements.
FrontAccounting forum → FA Modifications → How to change Textbox properties into Read only?
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 4 official extensions. Copyright © 2003–2009 PunBB.