Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/09/2012, 23:06
Montes28
 
Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 14 años, 2 meses
Puntos: 6
Respuesta: validar select en jquery Dialog

amigo logro validar y mostrar un error pero no de la mejor manera


Código Javascript:
Ver original
  1. bValid = bValid && checkLength( categoria, "categoria", 1, 10);

este es el codigo que se utiliza para hacer la validacion

Código Javascript:
Ver original
  1. function updateTips( t ) {
  2.             tips
  3.                 .text( t )
  4.                 .addClass( "ui-state-highlight" );
  5.             setTimeout(function() {
  6.                 tips.removeClass( "ui-state-highlight", 1500 );
  7.             }, 500 );
  8.         }
  9.  
  10.         function checkLength( o, n, min, max ) {
  11.             if ( o.val().length > max || o.val().length < min ) {
  12.                 o.addClass( "ui-state-error" );
  13.                 updateTips( "Length of " + n + " must be between " +
  14.                     min + " and " + max + "." );
  15.                
  16.                 //updateTips( "Este Campo es Requerido" );
  17.                 return false;
  18.             } else {
  19.                 return true;
  20.             }
  21.         }
  22.  
  23.         function checkRegexp( o, regexp, n ) {
  24.             if ( !( regexp.test( o.val() ) ) ) {
  25.                 o.addClass( "ui-state-error" );
  26.                 updateTips( n );
  27.                 return false;
  28.             } else {
  29.                 return true;
  30.             }
  31.         }