Powered By InputMask Evaluation Version
InputMask 3.5 Demos
© 1998-2008 Data Research Group. All rights reserved
Return To Menu
Overview of core features
Next Demo
ABOUT THIS DEMO:
As you play with the InputMask, on the left, you will notice the properties that affect it on the right. The center column lists the major properties to adjust and the default values entered. You may adjust these values and click the Save Updates button to refresh the InputMask control. The right column allows you to enter custom javascript against the client-side event handlers that are assigned as properties.
InputMask
Properties
Mask
MaskCharAlpha
MaskCharNumeric
MaskCharAlphaNumeric
MaskDisplay
ForceCase
Default
Lower
Upper
CursorStartLocation
SelectAll
First
FirstEmpty
Last
LastEmpty
Events
ClientSideOnGotFocus
ClientSideOnLostFocus
ClientSideOnBeforeInsert
ClientSideOnAfterInsert
Javascript
function fncGotFocus(InputMask) { InputMask.style.border = "solid 1px orange"; } function fncLostFocus(InputMask) { InputMask.style.border = "solid 1px rgb(127,157,185)"; } function fncBeforeInsert (InputMask, Value, Postition) { return true; } function fncAfterInsert (InputMask, Value) { }