jqxMaskedInput requires the following files:
jqx.base.cssjqxcore.jsjqxmaskedinput.js<script src="~/jqwidgets/jqxmaskedinput.js"></script> <jqx-masked-input disabled="true"></jqx-masked-input>To call a function(method), you need to pass the method name and parameters(if any) in the UI component’s instance.
<script src="~/jqwidgets/jqxmaskedinput.js"></script>
<jqx-masked-input instance="getInstance()"></jqx-masked-input>
@section scripts {
<script type="text/javascript">
function getInstance(instance) {
instance["clear"]();
}
</script>
}
To bind to an event of a UI Component, you can use on-event-type syntax. The example
code below demonstrates how to bind to an event.
<script src="~/jqwidgets/jqxmaskedinput.js"></script>
<jqx-masked-input on-change="eventHandler()"></jqx-masked-input>
@section scripts {
<script type="text/javascript">
function eventHandler(event) {
}
</script>
}