Files
luos/workflow/engine/classes
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
..
2012-01-03 18:31:15 -04:00
2012-10-22 17:23:01 -04:00
2012-10-09 12:39:23 -04:00
2012-10-22 15:45:47 -04:00
2012-10-09 12:44:53 -04:00
2012-10-09 12:53:01 -04:00
2012-10-22 16:35:54 -04:00
2012-10-19 17:09:00 -04:00
2012-10-09 12:58:15 -04:00
2012-10-09 13:00:37 -04:00
2012-10-22 15:45:47 -04:00
2012-10-22 15:45:47 -04:00
2012-10-23 19:23:58 +00:00
2012-10-22 17:09:37 -04:00
2012-10-22 17:09:37 -04:00
2012-10-09 13:23:16 -04:00
2012-10-09 13:25:26 -04:00
2012-10-09 13:26:29 -04:00
2012-10-22 15:45:47 -04:00