Difference between revisions of "Custom Commands de ejemplo"
From GXtest Wiki
(New page: Category: Guías de GXtest Ejemplos de custom commands. Se pueden agregar directamente o obtener una idea de como realizarlos / usarlos == Comparar si un control tiene la fecha de ho...) |
(→Comparar si un control tiene la fecha de hoy) |
||
Line 6: | Line 6: | ||
function CustomCommand (paramJS, currentGXVersion, currentLanguage){ | function CustomCommand (paramJS, currentGXVersion, currentLanguage){ | ||
− | |||
var dia=((new Date().getDate()<10) ? "0" : "")+new Date().getDate(); | var dia=((new Date().getDate()<10) ? "0" : "")+new Date().getDate(); | ||
var mes=(new Date().getMonth()+1<10) ? "0" +(new Date().getMonth()+1): new Date().getMonth()+1; | var mes=(new Date().getMonth()+1<10) ? "0" +(new Date().getMonth()+1): new Date().getMonth()+1; | ||
var year=(((new Date().getFullYear())%100<10) ? "0":"") +(new Date().getFullYear())%100; | var year=(((new Date().getFullYear())%100<10) ? "0":"") +(new Date().getFullYear())%100; | ||
var fecha=mes.concat("/".concat(dia.concat("/".concat(year)))); | var fecha=mes.concat("/".concat(dia.concat("/".concat(year)))); | ||
− | |||
if((paramJS==fecha)){ | if((paramJS==fecha)){ | ||
result = "OK"; | result = "OK"; |
Revision as of 22:42, 8 June 2011
Ejemplos de custom commands. Se pueden agregar directamente o obtener una idea de como realizarlos / usarlos
Comparar si un control tiene la fecha de hoy
function CustomCommand (paramJS, currentGXVersion, currentLanguage){ var dia=((new Date().getDate()<10) ? "0" : "")+new Date().getDate(); var mes=(new Date().getMonth()+1<10) ? "0" +(new Date().getMonth()+1): new Date().getMonth()+1; var year=(((new Date().getFullYear())%100<10) ? "0":"") +(new Date().getFullYear())%100; var fecha=mes.concat("/".concat(dia.concat("/".concat(year)))); if((paramJS==fecha)){ result = "OK"; }else{ result = "Mal, la fecha no es la de hoy"; } return result; }