Commit Graph

12 Commits

Author SHA1 Message Date
Gustavo Cruz
f55ff5bdae Automatic merge with the upstream master branch 2012-11-29 12:18:58 -04:00
norahmollo
b50e802391 WYSIWYG EDITOR Variable Picker Layout
WYSIWYG EDITOR Variable Picker Layout
2012-11-23 14:05:44 +00:00
Victor Saisa Lopez
1851b43d5b BUG 6828 "Request that the address and label of link fields in..." SOLVED
- 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
2012-11-22 17:50:52 -04:00
Fernando Ontiveros
1a92713791 CODE STYLE class.xmlfield_Input.php, fixing a typo error 2012-10-09 14:14:20 -04:00
Fernando Ontiveros
f07f0d1e7d CODE STYLE class.xmlfield_Image.php and class.xmlfield_InputPM.php 2012-10-09 13:43:23 -04:00
Julio Cesar Laura
4ac41f87ad BUG 9287 The variable picker for the trigger editor does not show grid variables in the list
- The grid fields don't display a label
- Added a default label for the grid fields
2012-07-09 22:42:59 -04:00
Julio Cesar Laura
1ccc82e440 BUG 8745 When defining Subprocess properties, grid, listbox, file and ...
- These fields are ommited when the list is generated
- An optional parameter was added, which if it is on "1" includes multiple selection fieds: such as listbox, checkgroup and grid
- File field can't be included becuase it's necessary to define first how files will be copied if we decide to include it later
2012-04-02 15:34:34 -04:00
Erik Amaru Ortiz
be0c90af87 BUG 000 momentarily reverted to rc5 fro pmTables (fix) 2011-09-05 12:47:25 -04:00
Carlos Pacha
b8670beaaf BUG 7375 En la version 2.0.32 RC4, en system falta la opcion @@PIN
This issue was fixed, The option was added.
2011-08-26 12:13:46 -04:00
abraar
ef427ec0df Changes done for PhpDoc 2011-02-01 12:49:40 +00:00
Abraar
0248e8121d Changes made for documentation 2011-01-22 12:20:08 +00:00
Erik Amaru Ortiz
0525681d79 initial commit from rev. 632 2010-12-02 23:34:41 +00:00