How to configure the ui-Mask clearOnBlur in an inline way?

Asked

Viewed 375 times

1

Is there any way to configure the clearOnBlur of ui-Mask inline?

According to the documentation, one of the ways to settar settings of ui-Mask is for Config Provider (or something like that), as in the example below:

app.config(['uiMask.ConfigProvider', function(uiMaskConfigProvider) {
  uiMaskConfigProvider.clearOnBlur(false);      
}

Example taken from:https://github.com/angular-ui/ui-mask

Following the suggested logic for setting up the Placeholder Char, which is something like :

<input type="text" (...) ui-mask-placeholder-char="_"/>

It occurred to me to use it this way:

<input type="text" (...) ui-mask-clear-on-blur="false"/>

... but, as you can imagine, it doesn’t work.

Noting in other forums, in the gringo OS, was suggested something interestingly plausible:

<input type="text" (...) ui-options="{clearOnBlur: false}"/>

Example taken from:https://stackoverflow.com/questions/27574151/how-to-set-autoclear-on-angular-ui-mask-to-false#Answer-29381277

... but it didn’t work either.

I believe there are other ways to set up via Directives or even Filters, but there is some way inline?

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.