- Icons to manage dynaform fields are set below column Label
- Problema resuelto, cuando se crea un campo con label vacio, al hacer click en Fields Handler los iconos edit field y
remove field se mostraran correctamente.
- Issue with labels in Radio Group, check group and suggest
- Se realizo el merge de cambios del codigo adjunto del presente bug "class.form.php" al archivo "class.form.php" del
branch master.
La herramienta 'Input Documet Viewer' del plugin pmPowerUp no funcionaba con grillas ya q no se estaba tomando en cuenta que el campo file dentro de una grilla tenga un inputDocument asociado y se le asignaba un -1 por defecto en ves del UID del iput document asociado.
Se agrego en la variable POST los datos del inputDoc asociado a cada file field en la grilla.
- Las fechas en grids cuando estan delante de un dropdown, text, link cambiaban su mascara de yyyy-mm-dd a dd-mm-yyyy.
- Se realizaron ajustes en los arrays que realizaban el filtrado de los items de un grid al momento de asignarle un label y un formato.
- CheckGroups option ZERO always selected
- Problem solved, In Dynaform to the create CheckGroups is validated the value when is zero,
additionally, is validates to Listbox and CheckGroup when are empty and zero.
* Available from version ProcessMaker-2.0.47 (2.5.1)
- CheckGroups option ZERO always selected
- Problem solved, In Dynaform to the create CheckGroups is validated the value when is zero,
additionally, is validates to Listbox and CheckGroup when are empty and zero.
* Available from version ProcessMaker-2.0.47 (2.5.1)
- New feature
- Request that the address and label of link fields in DynaForms can be
set and saved using case variables
- Populate links in a grid via trigger
- Added this new funcionality
- Take into account the following (examples):
> Triggers
* Populate a link field
@@MyLink = "http://www.php.net";
@@MyLink_label = "Read about PHP";
* Populate links in a grid
@=MYGRID = array();
$i = 1;
$rs = $stmt->executeQuery("SELECT USR_USERNAME FROM USERS", ResultSet::FETCHMODE_ASSOC);
while ($rs->next()) {
$row = $rs->getRow();
@=MYGRID[$i] = array(
"MyField" => $row["USR_USERNAME"],
"MyLink" => "http://www.php.net",
"MyLink_label" => "Read about PHP, $i"
);
$i = $i + 1;
}
> JavaScript, populate a link field:
getField("MyLink").href = "http://www.php.net";
getField("MyLink").innerHTML = "Read about PHP";
* Available from version 2.0.46
- New feature
- File field for each grid line
- Added "file" element in grids
- The QA team should test with:
* Grids in mode edit/view
* INPUT property (http://wiki.processmaker.com/index.php/2.0/Files)
* KnowledgeTree plugin
* And other cases
* Available from version 2.0.45
When dropdown is with savelabel active then on form save the sql(s) need to be executed. By default any sqlconnection is defined as an empty string and Pm uses the default connection workflow.. the issue was that in savelabel stage this default option was not defined then tried to connect to an empty connection. Now for Listbox, checkgroup and grid dropdown
When dropdown is with savelabel active then on form save the sql(s) need to be executed. By default any sqlconnection is defined as an empty string and Pm uses the default connection workflow.. the issue was that in savelabel stage this default option was not defined then tried to connect to an empty connection.
- is saving the radiogroup label
- by convention we decided save by default the label for all array field types like dropdown, checkgroup, listboxes and radiogroup, so the property for dropdown "save label" was removed because always is saving it!
- is saving the radiogroup label
- by convention we decided save by default the label for all array field types like dropdown, checkgroup, listboxes and radiogroup, so the property for dropdown "save label" was removed because always is saving it!