- Al buscar alguna palabra dentro de un suggest field, cuando se escribe la primera letra aparece una lista de la mayoria de las palabras que empiezan con esa letra, pero al ingresar la segunda letra, si esta combinacion no esta en la lista que aparecio al principio no muestra mas sugerencias hasta el momento que se escribe la segunda letra.
- Adjustment in the limit on selected elements.
- Problem in mask for dates fields
- Solved problem
- The possible values ..for the masks are in "Masks List" this in the
field properties. The %D in the mask is not a correct value for a mask
* Available from version ProcessMaker-2.0.46
- Validation "Email" in text field, can't read the character "-"
- To press key SUPR, added the character "."
- Solved problem, the validation now support character "-"
- Solved problem with key SUPR in validation "Email"
* Available from version ProcessMaker-2.0.46
Al hacer uso de cualquier funcion que realiza operaciones entre columnas de una grilla, el resultado siempre es redondeado a pesar de que los valores contengan decimales.
Al hacer uso de una formula para operaciones entre columnas de una grilla el resultado siempre es redondeado a pesar de que los valores contengan decimales.
- Don't showing the summary and cases notes columns when the Enterprise
plugin is enabled (Bug 10131)
- The column labels inbox, draft, etc do not change when you change the
language, this when the Enterprise plugin is enabled (Bug 10101)
- In ADMIN>Settings>CasesList when is load PMTable dropdown always goes
to the inbox tab
- The labels of the columns that are of the system, are now translated
with the set language
- In ADMIN>Settings>CasesList, options have been added to complete/upgrade
the fields of the Cases List
- Before you install/upgrade the Enterprise plugin, you should delete these files:
path_to_processmaker/workflow/engine/templates/cases/casesListSetup.html
path_to_processmaker/workflow/engine/templates/cases/casesListSetup.js
- The Enterprise plugin will work correctly if you have a version of
ProcessMaker 2.0.46 or higher
* Available from version 2.0.46
- 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