Designer > Classic Designer > Dynaforms: La propiedad "Text transform to" en todos los controles deberáeflejar una vista previa de la opcióesplegada
Se cambio los labels
16755: Textarea resizing has been disabled in 2.8
Se agrego una nueva propiedad en el formulario de Textarea que permite si el campo sea de tamañariable o no.
PROBLEM:
The 'Start Date' and 'End Date' didn't show a red asterisk to indicate that those fields are required.
SOLUTION:
The red asterisk was added in the mentioned fields.
- Codemirror tenia varias opciones que eran incompatibles con la version de procesmaker y ie.
- Se pudo el codmirror antiguo para las secciones del Designer en el xml y javascript para evitar esos errores.
- se pudo el mismo codigo para las 3 navegadores chrome, firefox, ie.
- Reference texts to enable adding and deleting rows in a grid are not shown
- Problema:
Cuando se crea uno nuevo Dynaforms y al adicionar un nuevo campo de tipo "Grid" en el formulario "Add grid" los
labels de los checkbox no se muestran.
Solucion:
Al añr un campo de tipo "Grid" en el formulario "Add grid" los labels de los checkobox se muestran.
Disponible para la version 2.5.2
- Nuevo requerimiento de funciones, nueva funcionalidad de filtrado para el campo "Suggest"
- Solucion:
Se ha implementado un nuevo atributo para el campo "Suggest" en el formulario "Add Suggest"
que consta de un Dropdown que nos permite seleccionar una opcion, la misma permite el filtrado
de texto, de la siguiente manera:
> Results that contain the entered text
> Results that start with the entered text
> Results that finish with the entered text
Esta opciones estan seteadas en el atributo "Search Type" con sus correspondientes opciones.
Disponible para la version 2.5.2
- Al momento de crear o modificar un campo suggest en grids no mostraba la opción de campos dependientes.
Cuando un campo suggest tenia campos dependientes agregaba un espacio en blanco al final de cada atributo dependentfields lo cual desplegaba un mensaje de error.
- Adjustments several in the Suggest on grids.
- PM 2.5.1 Testing 3. No se respeta el rango de fechas definido en el datepicker
- Problema resuelto, cuando se crea un campo "DatePicker" y se define rango de fechas, se mostrara el intevalo de
fechas correctamente.
* Available from version ProcessMaker-2.5.2-testing.1
- El campo formula permite un limite reducido para introducir caracteres
- Problema resuelto, en los DynaForm en su campo "Formula", se aumento su maxlength a 500
* Available from version ProcessMaker-2.5.2-testing.1
- New feature, add subtitles inside a drop-down
- Has created an xml options file specific to the field optgroup
* Available from version ProcessMaker-2.0.47 (2.5.1)
- Javascript doesn't execute when you open a dynaform fort the first time
- Solved problem, JavaScript execute when you open a dynaform in mode preview
* Available from version ProcessMaker-2.0.47 (2.5.1)
- 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)
The xml file of dynaform sets 'defaultvalue' with current date when 'defaultvalue_sel' has the value 'today', so I add an 'if' in 'workflow/engine/xmlform/dynaforms/filds/date.xml', to set this value with the value of 'defaultvalue_sel' when this one is 'today'.
- 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)
- The form allow save without choose a grid.
- was performed the validation, now must be choose a grid to save.
workflow/engine/templates/cases/casesListSetup.js
- In the browser safari the content of de windows exceeded of size.
- Was modified the size in the xml of the window also of reduce the size of
editor of js.
- el focus se quedaba en el dynaform cuando se añadia un link.
- este problema fue solucionado añadiendo una funcion focus1 y setTimeout('setFocus1()',500)
- that behavior was happending after codemirror editor was added in script text area.
- the problem was solved adding a set focus() call after codemirror editor was loaded.