Commit Graph

165 Commits

Author SHA1 Message Date
Hector Cortez
8e1afcd171 BUG 10054 Feature request: grid to support a suggest field SOLVED
- Add the possibility to insert Suggest fields in a grid.
- Adjustment  element Suggest for dependent fields in grids.
2012-12-11 18:45:52 -04:00
Hector Cortez
95e1a60f31 Merge remote branch 'upstream/master' into BUG-10054 2012-12-11 18:14:39 -04:00
Julio Cesar Laura
ff4661d816 Add validation in class.xmlform.php to avoid a notice 2012-12-10 17:26:59 -04:00
Brayan Osmar Pereyra Suxo
da560d606f BUG 10148 I added validation to the function saveForm SOLVED
I added validation to the function saveForm
2012-12-06 16:44:10 -04:00
Brayan Osmar Pereyra Suxo
0510888b5e BUG 10148 I added validation to value 1 in checkbox SOLVED
I added validation to value 1 in checkbox
2012-12-06 15:30:36 -04:00
Hector Cortez
9924f254d0 BUG 10054 Feature request: grid to support a suggest field SOLVED
- Add the possibility to insert Suggest fields in a grid.
- New Feature, was added Suggest option to the grid.
2012-12-05 15:19:57 -04:00
jennylee
70a735b501 BUG-7569 Date Fields are not applying the mask when displaying saved dates.
When applaying the mask it was showing a rear message. I add some mask letters to function masktophp to solution this issue, and add some validations to applay the mask when displaying saved dates.
2012-12-04 12:07:30 -04:00
jennylee
366b06acb5 BUG-7569 Date Fields are not applying the mask when displaying saved dates.
When applying the mask it was showing a rear message. I added some mask letters in 'masktophp' function, to give solution this issue, and I added some validations to apply the mask when displaying saved dates.
2012-12-03 18:47:53 -04:00
Julio Cesar Laura
9581c9d3e7 BUG 7222 Etiquetas con HTML muestran caracteres html extra en las filas SOLVED
- El valor que se coloca en el atributo pm:label no estaba siendo validado
- El valor ahora es validado usando entidades
2012-11-28 14:19:35 -04: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
user
24cb5bce52 Merge remote-tracking branch 'upstream/master' into speedy 2012-11-20 14:04:40 -04:00
jennylee
7c8b33049a BUG-7802 In Advanced Search -> Information -> Dynaform, the Submit Button was enabled, like in edition mode.
I added a javascript code to disable the Submit Button on file 'workflow/engine/methods/cases/casesHistoryDynaformPage_Ajax.php'.
2012-11-20 10:58:11 -04:00
jennylee
0ed503d625 BUG-7802 In Advanced Search -> Information -> Dynaform, the Submit Button was enabled, like in edition mode.
I changed the render of the Submit Button on file 'class.xmlform.php' in a view mode, to show this button disabled.
2012-11-19 13:16:10 -04:00
Fernando Ontiveros
a8e8cf0295 SPEEDY adding the autloader feature in class.bootstrap.php 2012-11-13 13:48:16 -04:00
Fernando Ontiveros
b5c11b4198 SPEEDY first version of boostrap.php, with many changes 2012-11-12 14:44:44 -04:00
Julio Cesar Laura
8ff41d0b5a Add validation with masks in dates in view mode 2012-11-08 17:15:56 -04:00
Ralph Asendeteufrer
c1aeaa801c changes to set fix. 2012-10-18 12:24:54 -04:00
Ralph Asendeteufrer
8873ca4a95 changes: sizeof got a $, fix. 2012-10-18 12:09:50 -04:00
Ralph Asendeteufrer
05758ea812 CODE STYLE gulliver/system/
files modified:    class.filterForm.php
                    class.publisher.php
                    class.xmlform.php
                    class.ymlDomain.php
2012-10-17 18:15:15 -04:00
Julio Cesar Laura
10318164c5 Fix accesibility problem with radiogroups and checkgroups populated by query 2012-10-17 13:48:49 -04:00
Julio Cesar Laura
0dd1dbb5f7 Delete addional "x" character 2012-10-16 14:14:29 -04:00
Julio Cesar Laura
93abda2b92 Fix issues with dorms accesibility (Stanford) 2012-10-16 14:11:05 -04:00
Brayan Osmar Pereyra Suxo
8ab69180d0 MASTER I add functinality label an addRoww to focus
I add functinality label an addRoww to focus
2012-10-16 11:21:46 -04:00
Brayan Osmar Pereyra Suxo
19dd7e5efb MASTER I add functinality label an addRoww to focus
I add functinality label an addRoww to focus
2012-10-16 11:19:42 -04:00
Julio Cesar Laura
3d1c89793a BUG 9905 Dynaforms accessibility SOLVED
- Added tag label for the control labels in the mater dynaform
2012-10-11 13:16:48 -04:00
Victor Saisa Lopez
29c6fc996d BUG 8333 "File field for each grid line" SOLVED
- 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
2012-10-04 17:54:44 -04:00
Brayan Osmar Pereyra Suxo
ac920502cf BUG 9508 I changed the variable name
I changed thevariable name adjustgridswith for adjustgridswidth
2012-10-04 15:33:11 -04:00
Brayan Osmar Pereyra Suxo
1d8b2671c1 Merge remote branch 'upstream/master' into BUG-9508 2012-10-04 15:25:38 -04:00
Brayan Osmar Pereyra Suxo
ae11d5c106 BUG 9508 I add the option the show scroll
I add propety in form to the grids with scroll
2012-10-03 11:57:16 -04:00
Hector Cortez
86c9953205 BUG 8510 Hints are not displayed next to link fields.No hint icon appears SOLVED
- Hints are not displayed next to link fields. No hint icon appears.
- Added hints to the link element and grids title.
2012-10-03 10:06:31 -04:00
Victor Saisa Lopez
933dced14b BUG 5140 "Formula is not working in master dynaforms" SOLVED
- 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
2012-09-19 12:26:44 -04:00
Victor Saisa Lopez
40e2dbbcb8 BUG 9619 "Grillas: Problema en las dependencias al eliminar..." SOLVED
- 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
2012-08-27 18:57:17 -04:00
Julio Cesar Laura
3f73e0e196 BUG 9658 validateForm() function fails if Dynaform includes Suggest box in it SOLVED
- Unnecesary code added recently to fix another issue that now is correctly validated
- Delete this unnecesary code
2012-08-22 18:08:34 -04:00
Marco Antonio Nina
8599c66884 BUG 9633 Dependant fields suggest field (extension of 0009433) SOLVED
- No was validated multiple dependencies to suggest.
- was add validating.
2012-08-22 16:34:03 -04:00
Julio Cesar Laura
36b6adcecf BUG 9594 Have no cache for JavaScript IMPROVEMENT
- Add additiona varification for the path sep in the real Path
2012-08-17 10:26:16 -04:00
Julio Cesar Laura
f704f30497 BUG 9594 Have no cache for JavaScript SOLVED
- The js file for the dynaforms always use the same name, then when the browser loads the page use the same js file
- Now the cache js files are generated with different names, according to the modify date of the xmlform
2012-08-16 18:31:10 -04:00
Victor Saisa Lopez
41f9312f7a BUG 9558 "Suggest field functionality is not intuitive..." SOLVED
- New feature, change SUGGEST field behavior for the insertion of
  a new record
- SUGGEST displays a temporary message to be placed in this field
- SUGGEST when you insert a new record to the database, it displays
  a popup message indicating the insertion
- SUGGEST this field allows the insertion of a new record by pressing
  the key Intro
- Is improved SUGGEST field behavior (when there are results, and when
  there are none)
- Problem solved by adding the SUGGEST field in the Dynaform (in the
  editor DynaForms) this in IE, when ckeck the option "Store new entry"
- Problem solved in method "String.prototype.trim" (JavaScript)
2012-08-16 15:37:15 -04:00
Hector Cortez
789f7eaa6f BUG 9433 Suggest box doesn't work with dependent fields SOLVED
- When a suggest box is created populated it with a pm table with some dependent fields, the dependent fields don't work. I've attached the process and added the xml form definition.
- Adjustment dependent fields in suggest element, in the case of other data elements.
2012-08-07 18:35:08 -04:00
Marco Antonio Nina
c7aed2e57d BUG 4869 Download link on dynaform in view mode SOLVED
- Not had the option to download.
- The dynaform in view mode documents can be downloaded if you have permissions.
2012-07-31 09:53:18 -04:00
Marco Antonio Nina
ba600e3758 BUG 4869 Download link on dynaform in view mode SOLVED
- Not had the option to download.
- The dynaform in view mode documents can be downloaded if you have permissions.
2012-07-31 09:17:29 -04:00
Marco Antonio Nina
fe8fcc4ea3 BUG 4869 Download link on dynaform in view mode SOLVED
- Not had the option to download.
- The dynaform in view mode documents can be downloaded if you have permissions.
2012-07-30 18:20:50 -04:00
Marco Antonio Nina
4bc006b161 BUG 4869 Download link on dynaform in view mode SOLVED
- Not had the option to download.
- The dynaform in view mode documents can be downloaded if you have permissions
2012-07-30 11:50:07 -04:00
Hector Cortez
366e03ce11 BUG 9433 Suggest box doesn't work with dependent fields SOLVED
- Adjustment Suggest Clean items in the dropdown dependent.
2012-07-26 12:07:36 -04:00
Hector Cortez
9f0734aef1 BUG 9433 Suggest box doesn't work with dependent fields SOLVED
- When a suggest box is created populated it with a pm table with some dependent fields, the dependent fields don't work. I've attached the process and added the xml form definition.
- Adjustment Suggest element in combination with dropdown dependent fields.
2012-07-20 17:46:50 -04:00
Brayan Osmar Pereyra Suxo
9a1c4e6f72 BUG 9438 Don't add ceros the mask in the fields SOLVED
- I add code for add ceros in the fields
2012-07-11 18:53:53 -04:00
Julio Cesar Laura
5cff267423 BUG 000 Add validation in the hierachy modes when mode of the field are blank 2012-07-10 19:03:02 -04:00
Julio Cesar Laura
bb02ac5d9e BUG 9136 Employment Application Process, web entry
- The hierachy of the modes was incorrect
- Fixed the hierachy of modes
2012-07-10 17:58:55 -04:00
Hector Cortez
8aa8faede3 BUG 9191 Cuando se importa procesos antiguos con mascara currency ... SOLVED
- En la version de PM 2.0.41 testing 3 Cuando se importa procesos antiguos con mascara currency a la nueva version muestra en sus campos ;$, como se adjunta en la imagen correspondiente.
- Adjustment in the validate the simbols _ ; in the Currency fields.
2012-07-06 17:36:41 -04:00
Julio Cesar Laura
3f6da015e6 BUGS 9407 and 9411 fixed for release 2.0.42
- Added required validations
2012-07-03 17:35:19 -04:00
Julio Cesar Laura
1355d58bfb BUG 0000 Grid fields not rendered when values are null
- When the grid values don't have a value for a field this field is not rendered
- Add validation to send empty values for grid fields
2012-07-03 01:27:02 -04:00