Skip to content

Commit

Permalink
Incluir ejemplo de maxlength en doc rup_table
Browse files Browse the repository at this point in the history
  • Loading branch information
xaabi6 committed Oct 15, 2024
1 parent bf31109 commit 667555a
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions doc/guides/rup.table.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,13 @@ jQuery(function($){
name: 'nombre',
index: 'nombre',
editable: true,
hidden: false
hidden: false,
editoptions: {
maxlength: 20
},
searchoptions: {
maxlength: 20
}
},
{
name: 'apellido1',
Expand Down Expand Up @@ -627,7 +633,13 @@ const miColModel = [
name: 'nombre',
index: 'nombre',
editable: true,
hidden: false
hidden: false,
editoptions: {
maxlength: 20
},
searchoptions: {
maxlength: 20
}
},
{
name: 'apellido1',
Expand Down Expand Up @@ -740,5 +752,5 @@ Propiedades destacadas:
* **orderable**: permite deshabilitar la ordenación de una columna.
* **rupType**: tipo RUP del campo.
* **edittype**: cuando se habilite la edición en línea y se defina esta propiedad con un valor "checkbox", la tabla convertirá un input normal en uno de tipo checkbox.
* **editoptions**: sirve para configurar todas las opciones de los campos RUP en edición.
* **searchoptions**: sirve para configurar todas las opciones de los campos RUP en el buscador (seeker).
* **editoptions**: sirve para configurar todas las opciones de los campos en edición.
* **searchoptions**: sirve para configurar todas las opciones de los campos en el buscador (seeker).

0 comments on commit 667555a

Please sign in to comment.