Jump to content

lagtto

Members
  • Posts

    7
  • Joined

  • Last visited

lagtto's Achievements

Newbie

Newbie (1/4)

1

Reputation

  1. Algum exemplo de preenchimento automático de campos usando somente o CEP? Grato, Luciano
  2. Hi, This is a phone mask input with 9 digit for the jQuery. UniEdit1 -> ClientEvents -> ExtEvents -> add afterrender function: function OnAfterrender(sender) { $("#"+sender.id+"-inputEl") .mask("(99) 99999-999?9") .live('focusout', function (event) { var target, phone, element; target = (event.currentTarget) ? event.currentTarget : event.srcElement; phone = target.value.replace(/\D/g, ''); element = $(target); element.unmask(); if(phone.length > 10) { element.mask("(99) 99999-999?9"); } else { element.mask("(99) 9999-9999?9"); } }); } Best regards.
  3. Hi, I'm use 0.93 uniGUI, Delphi 2010 and google chrome. And at the uniEdit, I did not understand where I can set the input type = "password". Best regards
  4. Thanks for your support, I placed the code at UniEdit1->ClientEvents->ExtEvents add afterrender function: but nothing happens. is there anything else that I could do. Best regards.
×
×
  • Create New...