Commit Graph

72 Commits

Author SHA1 Message Date
Julio Cesar Laura
5f8e4d541c Fix incorrect object declaration, PHP 5.4.x compatibility 2014-02-25 13:08:56 -04:00
norahmollo
c3770233cd BUG-14050 Gridd Issue
Delete and Add rows propertie is not saved.
2014-02-10 10:55:44 -04:00
Luis Fernando Saisa Lopez
3aa82aeeac BUG 13536 "Save as option inside a Dyanform is..." SOLVED
- Save as option inside a Dyanform is not working
- Problema:
  Al utilizar el Editor de Dynaform la opcion "Save as" que permite crear copias de un dynaform, dentro del mismo
  editor se visualiza en el Dropdown donde se lista los dynaforms existentes. Cuando se utiliza esta opcion "Save as" al
  crear la copia este no aparecia en el Dropdown.

  Solucion:
  Al crear la copia de un dynaform se utiliza AJAX que permite la reconstruccion del Dropdown en donde se muestra todo
  los dynaforms existentes mas la nueva copia que se crea.

  var result = ajax_post(
      frm.action,
      frm,
      "POST",
      function (responseText)
      {
         ...
         for (var i = 0; i <= dataResponse.length - 1; i++) {
             ...
         }
      }
  );
2013-12-03 10:23:19 -04:00
Luis Fernando Saisa Lopez
418d4ddb73 BUG 13536 "Save as option inside a Dyanform is..." SOLVED
- Save as option inside a Dyanform is not working

- Problema:
  Cuando se utiliza del Editor de Dynaform la opcion "Save as" que permite sacar copias de un dynaform, la copia que se
  creaba no se visualiza cuando se listanban los dynaforms.

  Solucion:
  Del Editor de Dynaform la opcion "Save as" permite sacar copias de un Dynaform, al sacar una copia de un dynaforms
  utilizando esta opcion, en el listado de dynafoms se muestra la copia correctamente.

  El problema consistia que cuando se hacia click en el boton "Save" del formulario "Save as" los datos no se registraban
  en la base de datos y en el listado de los dynaforms no se los veia, por alguna razon los metodos que se utilizaban
  no hacian tal registro. Para la solucion del problema se utilizo el metodo "create()" de la  clase "class Dynaform".

  Disponible para la version 2.5.2
2013-11-26 16:47:09 -04:00
Luis Fernando Saisa Lopez
3a9c26207b BUG 13332 "Problem with link target FrameName" SOLVED
- Problem with link target "FrameName".
- Problema:
  Al crear un nuevo campo Link en el DynaForm "Add Link", en el atributo "Target" se selecciona la opcion "Framename"
  se habilita un campo de tipo "Text", donde se introduce un nombre cualquiera, se guarda esta configuracion del nuevo
  campo, al momento de editar este campo link, el atributo "Target" no refleja la configuracion inicial.

  Solucion:
  El problema es el siguiente: al momento de guardar los datos del campo Link, cuando se elegia la opcion "Framename"
  el atributo "target_sel" se define vacio y este atributo no existe como tal en el "XML", ahora ya existe.

  Ejemplos:
  Antes de la solucion:
    <LINK1 type="link" link="http://www.yahoo.com" target="myFrame" required="0" readonly="0" optgroup="0"><en>Yahoo!</en></LINK1>

  Con la solucion:
    <LINK1 type="link" link="http://www.yahoo.com" target_sel="" target="myFrame" required="0" readonly="0" optgroup="0"><en>Yahoo!</en></LINK1>
2013-10-22 11:46:03 -04:00
Omar Suca
dd90f8d396 BUG-12488 Date fields are editable even when you not select this function and the fields of date have to be validate it
Descripcion: You can edit the date field even if you don't select editable in the menu of a date field.

Solucion: Se asigna las propiedades por default a cada campo de un formulario, asi para este bug en especifico se le asigna la propiedad "editable=0" al campo tipo "Date". Se realiza la verificacion del tipo de propiedad que se asignara al campo
2013-08-12 10:56:10 -04:00
Omar Suca
bbfbfa46de BUG-12488 Date fields are editable even when you not select this function and the fields of date have to be validate it
Descripcion: You can edit the date field even if you don't select editable in the menu of a date field.

Solucion: Se asigna las propiedades por default a cada campo de un formulario, asi para este bug en especifico se le asigna la propiedad "editable=0" al campo tipo "Date"
2013-08-08 16:46:55 -04:00
Victor Saisa Lopez
242d712a37 BUG 9549 "Posibilidad de copiar dynaforms" SOLVED
- The condition editor not is copy/import
- Solved problem in copy/import the condition editor
* Available from version ProcessMaker-2.5.1
2013-05-16 16:28:09 -04:00
Victor Saisa Lopez
3cd724a9ed BUG 10920 "Add subtitles inside a drop-down" SOLVED
- New feature, add subtitles inside a drop-down
- Solved problem, added grouping elements in DropDowns
- If a DropDown has enabled optgroup, an example with SQL would be the following:
    (SELECT 'optgroup1' AS UID, 'Users' AS NAME)
    UNION
    (SELECT USR.USR_UID AS UID, USR.USR_USERNAME AS NAME
     FROM   USERS AS USR
     WHERE  USR.USR_USERNAME <> '' AND USR.USR_USERNAME LIKE 'u%'
    )
    UNION
    (SELECT 'optgroup2' AS UID, 'Countries' AS NAME)
    UNION
    (SELECT COUNTRY.IC_UID AS UID, COUNTRY.IC_NAME AS NAME
     FROM   ISO_COUNTRY AS COUNTRY
     WHERE  COUNTRY.IC_NAME LIKE 'b%'
    )
* Available from version ProcessMaker-2.0.47 (2.5.1)
2013-03-27 09:57:22 -04:00
Julio Cesar Laura
491bbee8e9 And more validations for warnings and notices 2013-01-31 11:56:38 -04:00
Julio Cesar Laura
a1e527265c BUG 10396 Mensaje de Invalid Response al crear Dynaform SOLVED
- Missing validation when session is expired
- Add validation when session is expired
2013-01-28 20:41:39 -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
Marco Antonio Nina
ba8f1b4083 Create a dynaform through of pmtable IMPROVEMENT
- not was create the fields of dynaform.
- Was class AdditionalTablesPeer and option "Action".
2013-01-07 14:33:01 -04:00
Victor Saisa Lopez
4cf67531b6 BUG 9549 "Posibilidad de copiar dynaforms" SOLVED
- New feature
- Add the ability to copy/import Dynaforms
- Copy/Import Dynaform option was added in DESIGNER>DYNAFORMS>New
* Available from version ProcessMaker-2.0.46
2013-01-03 15:31:55 -04:00
julceslauhub
49b45a678f Merge pull request #1129 from julceslauhub/master
BUG 9549 Changes reverted
2012-12-21 11:34:18 -08:00
Julio Cesar Laura
941320bbdf BUG 9549 Changes reverted 2012-12-21 15:33:46 -04:00
julceslauhub
4354825efe Merge pull request #1126 from marcoAntonioNina/BUG-10228
BUG 10228 No permite guardar las propiedades de las grillas tanto... SOLVED
2012-12-21 06:15:49 -08:00
Marco Antonio Nina
52273a9a35 BUG 10228 No permite guardar las propiedades de las grillas tanto... SOLVED
- Validation incorrect.
- Was add validation.
2012-12-21 10:09:00 -04:00
Julio Cesar Laura
cf1a161d09 Many little improvements for the version 2.0.46 2012-12-21 10:00:42 -04:00
Marco Antonio Nina
e56132beab BUG 10200 No se guardan los valores en el campo dropdown... SOLVED
- Not save the data in dropdown when the first row is empty.
- was add validation.
2012-12-19 09:21:18 -04:00
Hector Cortez
95e1a60f31 Merge remote branch 'upstream/master' into BUG-10054 2012-12-11 18:14:39 -04:00
Brayan Osmar Pereyra Suxo
bcef02210a BUG 9549 I added the width the form and dropdown SOLVED
I added the width the form and dropdown
2012-12-05 15:21:05 -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
Brayan Osmar Pereyra Suxo
8e6ee6388b BUG 9549 I added a confirm to import dynaform SOLVED
I added a confirm to import dynaform
2012-12-05 15:01:53 -04:00
Julio Cesar Laura
5aa3050203 BUG 7900 DynaForm title not changed in designer, on save SOLVED
- The dynaform title was not refreshed after the save action
- Refresh the dynaform title after the save action
2012-12-04 12:09:14 -04:00
Gustavo Cruz
088737da93 merging some changes from the upstream master branch 2012-11-30 11:27:38 -04:00
ralph
2df7ff709a Changing deprecated json->decode json->encode by Bootstrap functions. 2012-11-29 14:25:06 -04:00
Gustavo Cruz
f55ff5bdae Automatic merge with the upstream master branch 2012-11-29 12:18:58 -04:00
Brayan Osmar Pereyra Suxo
21013b00f6 BUG 9549 I added button to import dynaform SOLVED
I added button to import dynaform
2012-11-23 16:05:35 -04:00
Brayan Osmar Pereyra Suxo
9b2c1343e4 BUG 9549 I added button to import dynaform SOLVED
I added button to import dynaform
2012-11-23 15:47:10 -04:00
norahmollo
bd0ababd7b WYSIWYG editor dynaforms and output documents
WYSIWTG editor for dynaforms and output documents
2012-11-14 12:53:49 +00:00
Fernando Ontiveros
a8e8cf0295 SPEEDY adding the autloader feature in class.bootstrap.php 2012-11-13 13:48:16 -04:00
Julio Cesar Laura
2836b56032 BUG 9588 if you save your dynaform and your session has expired you get no warning SOLVED
- Added validation when the session was expired
2012-10-31 14:33:47 -04:00
Hector Cortez
f62edeec83 BUG 9286 Comments are deleted from the XML code for DynaForms SOLVED
- ProcessMaker deletes comments from XML code.
- Adjustment in the standarized Code.
2012-10-25 16:08:31 -04:00
Hector Cortez
8e4229f53e BUG 9286 Comments are deleted from the XML code for DynaForms SOLVED
- ProcessMaker deletes comments from XML code. For example if I have:
- Change in the way of creating XML files in DynaForms.
2012-10-25 15:05:39 -04:00
Ralph Asendeteufrer
d55be436ba CODE Style changes
files modified:   workflow/engine/methods/dynaforms/dynaforms_Editor.php
                  workflow/engine/methods/dynaforms/dynaforms_FlatEditor.php
                  workflow/engine/methods/events/eventList.php
                  workflow/engine/methods/events/eventsAjax.php
                  workflow/engine/methods/events/eventsCompleted.php
                  workflow/engine/methods/events/eventsDelete.php
                  workflow/engine/methods/events/eventsEdit.php
                  workflow/engine/methods/events/eventsEditAction.php
                  workflow/engine/methods/events/eventsPending.php
                  workflow/engine/methods/events/eventsSave.php
                  workflow/engine/methods/events/eventsSetupGraph.php
                  workflow/engine/methods/events/triggersSave.php
2012-10-19 10:43:11 -04:00
Ralph Asendeteufrer
17631d0082 CODE STYLE
files modified:
conditionalShowHide.php
conditionalShowHide_Ajax.php
datemask.php
dynaform_Fields.php
dynaforms_Ajax.php
dynaforms_AssignVariables.php
dynaforms_ChoseType.php
dynaforms_Delete.php
dynaforms_Edit.php
dynaforms_FlatEditor.php
dynaforms_List.php
dynaforms_NewPlugin.php
dynaforms_PagedTableAjax.php
dynaforms_Preview.php
dynaforms_Save.php
dynaforms_SaveProperties.php
dynaforms_Save_as.php
dynaforms_Saveas.php
dynaforms_ToolbarAjax.php
dynaforms_checkDependentFields.php
fieldsGetterAjax.php
fieldsHandler.php
fieldsHandlerAjax.php
fieldsHandlerViewer.php
fields_Ajax.php
fields_Delete.php
fields_Edit.php
fields_List.php
fields_Order.php
test.php
2012-10-18 11:53:05 -04:00
Hector Cortez
9bbf93da0c BUG-8753 Short Tags are Still Present as of Version 2.0.38 SOLVED
- Short tags are still present in the code in the form of the short print tag: <?=
- Changing of the short tags for deprecated functions and code.
2012-07-23 10:33:10 -04:00
Julio Cesar Laura
7b2577a9a0 BUG 9285 A PM Table DynaForm field cant' be filled beacuse the ...
- Apply the code standard
2012-07-02 12:12:28 -04:00
Marco Antonio Nina
df7e7b6b92 BUG 9336 Hidden field: Mode Edit/View SOLVED
- This field is not need in the form.
- this field was placed with a defaultvalue of edit.
2012-06-28 18:30:08 -04:00
Marco Antonio Nina
3bef9014de BUG 9337 Hint with .commas. and/or "apostrophes" is not working SOLVED
- We verified that when is intruduced a character strange the string is cut.
- add sentence of escape to validate the string.
2012-06-27 18:49:09 -04:00
Julio Cesar Laura
cf80a5d5b4 BUG 9285 A PM Table DynaForm field cant' be filled beacuse the ... SOLVED
- The array sent to grid don't contains the key "PRO_VARIABLE"
- Added the key "PRO_VARIABLE" to the array sent to grid
2012-06-25 12:35:11 -04:00
Brayan Osmar Pereyra Suxo
341b3a46f6 BUG 8933 The code Javascrit don't mix with PHP SOLVED
The code Javascript don't mix with PHP
2012-06-08 15:35:09 -04:00
Brayan Osmar Pereyra Suxo
bb3d02e032 BUG 8933 The option visible in Fields handler tab no work SOLVED
- The javascript not refresh the property "meta", this property have fields to hide
- The javascript resfresh with code empty
2012-06-05 17:32:36 -04:00
Erik Amaru Ortiz
9b8c13bd69 BUG 8046 Fixing short_open_tag directive dependency 2011-11-24 10:34:59 -04:00
Hector Cortez
fe5937366d BUG 7739 Adjustment at when making encode a javascript code. 2011-10-06 10:37:24 -04:00
Carlos Pacha
186d560226 BUG 7750 Error on opening saved copy of dynaform
This problem was fixed, we find the way to create the correct object
2011-10-03 10:56:23 -04:00
Carlos Pacha
49adad7297 BUG 7612 Cannot create Dynaform using PM table
This problem was fixed, there was a problem with an index of the grid
2011-09-09 12:41:37 -04:00
Erik Amaru Ortiz
be0c90af87 BUG 000 momentarily reverted to rc5 fro pmTables (fix) 2011-09-05 12:47:25 -04:00
Hector Cortez
8b237e3c52 BUG 7145 Change delimiter for validate parser at generate xml file. 2011-06-29 15:29:00 -04:00