Changes between Initial Version and Version 1 of Ticket #13433
- Timestamp:
- Jul 13, 2011, 3:12:21 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13433
- Property Owner set to Douglas Hays
-
Property
Component
changed from
General
toDijit - Form
-
Ticket #13433 – Description
initial v1 3 3 i have these controls: 4 4 5 ipt_tipo_telefono:FilteringSelect,6 ipt_codigo_area:ValidationTextBox and7 ipt_numero_telefono:ValidationTextBox (on this one i set the regExp according to the values of the other two)5 - ipt_tipo_telefono: !FilteringSelect, 6 - ipt_codigo_area: !ValidationTextBox and 7 - ipt_numero_telefono: !ValidationTextBox (on this one i set the regExp according to the values of the other two) 8 8 9 9 On onChange event of the first two, execute this function: 10 10 11 {{{ 11 12 function validarTelefono() 12 13 { … … 53 54 54 55 } 56 }}}