- 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
PROBLEM cannot addrows into a grid after change the preview tab, seemd ther are two different instances of grid.
FIX grid.js was taking the ancient instange of the grid, since a new one is been displayed th old not. the addGridRow() method not points to the new instance.
PROBLEM cannot addrows into a grid after change the preview tab, seemd ther are two different instances of grid.
FIX grid.js was taking the ancient instange of the grid, since a new one is been displayed th old not. the addGridRow() method not points to the new instance.
PROBLEM cannot addrows into a grid after change the preview tab, seemd ther are two different instances of grid.
FIX grid.js was taking the ancient instange of the grid, since a new one is been displayed th old not. the addGridRow() method not points to the new instance.
- Grids in view mode displays the sum not properly
- Problem solved, improved SUM and AVG functions in grids
- It improves the visualization of the web page header, only for IE
* Available from version 2.0.45
- 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
- Not taken into account the attribute "Decimal Separator" for the
execution of a formula in master DynaForms
- When entering data in a Currency/Percentage field is added spaces
at the beginning (when the field is in a formula)
- Problem solved, has joined the attribute "Decimal Separator" to
evaluate the formula
- It has rewritten the algorithm for the formula evaluation
* Available from version 2.0.44
- SUM and AVG functions does not work correctly in Grids
- No one takes into account the attribute "Decimal Separator"
- Problem solved, SUM and AVG functions now take into account the
attribute "Decimal Separator"
* Available from version 2.0.44
- When you delete a row of a grid in any order (not in sequential order)
and then add a new row, dependent fields do not work.
- Problem solved, dependent fields work correctly when you delete any row.
* Available from version 2.0.44
- When you delete a row of a grid in any order (not in sequential order)
and then add a new row, dependent fields do not work.
- Problem resuelo, dependent fields work correctly when you delete any row.
* Available from version 2.0.44