Commit Graph

175 Commits

Author SHA1 Message Date
Marco Antonio Nina
1db4bf5603 BUG 10363: Date fields prevent grids from working with mode="view" SOLVED
- Field required in form in modw view.
- was validation in field date in mode view.
2013-01-18 14:21:00 -04:00
Julio Cesar Laura
867a975c8c BUG 10343 Add a way to identify the ProcessMaker field type in the g... IMPROVEMENT 2013-01-16 15:36:15 -04:00
Hector Cortez
2b3be87abe BUG 10253 Error al usar Dependent fields con Suggest field SOLVED
- El proceso adjunto muestra el error.
- Several adjustments in suggest fields.
2013-01-15 11:42:56 -04:00
Victor Saisa Lopez
0240d938f4 BUG 6828 "Request that the address and label of link fields in..." SOLVED
- Added validation for renderGrid()
* Available from version ProcessMaker-2.0.46
2013-01-14 11:48:29 -04:00
Julio Cesar Laura
67a90419fc BUG 10343: Add a way to identify the ProcessMaker field type in the generated dynaform (class?) SOLVED
- Add html attribute "pm:fieldtype" for normal forms and "pm:gridtype" for grid
- Fields types affected: text, currency, percentage, date, suggest, dropdown, yesno, listbox
2013-01-10 14:26:08 -04:00
Julio Cesar Laura
d8cb67ff60 BUG 10260 Hidden Tag mal formado en propiedades de Triggers SOLVED
- The label tag are included for all fields types
- Only include label tag when is necessary
2013-01-03 16:38:46 -04:00
Julio Cesar Laura
f7253bd3d6 BUG 9773 Suggest Field Feature in a Grid IMPROVEMENT 2012-12-19 13:10:07 -04:00
julceslauhub
2db71ee146 Merge pull request #1094 from Jennydmz/BUG-3860
Bug 3860 New Feature. Add options "Capitalize Phrase" and "Title Case" to "Text transform to".
2012-12-13 10:15:24 -08:00
jennylee
2ddaae9bb3 BUG-3860 New Feature. Add options "Capitalize Phrase" and "Title Case" to "Text transform to".
New Feature. I added new functions to  Capitalize Phrase and Title Case in''Text transform to'.
2012-12-13 12:28:11 -04:00
jennylee
4e20a99193 BUG-3860 New Feature. Add options "Capitalize Phrase" and "Title Case" to "Text transform to".
New Feature. I added new functions to  Capitalize Phrase and Title Case in''Text transform to'.
2012-12-13 12:18:55 -04:00
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