form-only Archives | phpGrid - PHP Datagrid Create PHP grids in minutes, not hours. Tue, 18 Jul 2023 18:05:38 +0000 en-US hourly 1 CodeProjecthttps://wordpress.org/?v=7.0.3 129966043 form_only() * https://phpgrid.com/documentation/form_only/ Mon, 17 Oct 2016 00:33:58 +0000 http://phpgrid.com/?p=9038 * Please note Form-only mode is only available in paid versions. It is supported from version 7.0 and above. Parameter(s): none Description: Display the add form only without the datagrid. The form will remain on the screen and reset after each successful submit. Remark: Must call enable_edit(‘FORM’) prior to form_only(). Example: 1$dg -> enable_edit('FORM') -> form_only();

The post form_only() * appeared first on phpGrid - PHP Datagrid.

]]>
* Please note Form-only mode is only available in paid versions. It is supported from version 7.0 and above.

  • Parameter(s):
    • none
  • Description:
    • Display the add form only without the datagrid. The form will remain on the screen and reset after each successful submit.
  • Remark:
    • Must call enable_edit(‘FORM’) prior to form_only().
  • Example:
1
$dg -> enable_edit('FORM') -> form_only();

The post form_only() * appeared first on phpGrid - PHP Datagrid.

]]>
9038
load_form() https://phpgrid.com/documentation/load_form/ Fri, 14 Oct 2016 00:33:58 +0000 http://phpgrid.com/?p=9043 * Paid version only.  Supported from version 7.0 and above. Parameter(s): $key: A database table primary key value. Description: Load an existing record from DB and display in edit form without the datagrid. The form will remain on the screen after submit. Remark: Must call enable_edit(‘FORM’) and form_only() first Only can be used in conjunction with form_only() Example: 1$dg […]

The post load_form() appeared first on phpGrid - PHP Datagrid.

]]>
* Paid version only.  Supported from version 7.0 and above.

  • Parameter(s):
    • $key: A database table primary key value.
  • Description:
    • Load an existing record from DB and display in edit form without the datagrid. The form will remain on the screen after submit.
  • Remark:
  • Example:
1
$dg -> enable_edit('FORM') -> form_only() -> load_form(8888);

The post load_form() appeared first on phpGrid - PHP Datagrid.

]]>
9043