LogSistemas01 Posted May 4, 2020 Posted May 4, 2020 Hello people, I had the following situation: I needed to change a mask at run time based on the index of a UniCombobox. If index 1, mask XXX If index 2, mask YYY. I resolved it as follows: UniEdit1.JSInterface.JSCode ('$ ("#' + UniEdit1.JSName + '_id-inputEl"). Inputmask ("999.999.999-99");'); I just change the mask according to the index. I wanted to understand the following question: To apply css to a Unibutton for example, I add the css class to the button, as follows: UniButton.JSInterface.JSCall ('addCls', ['className']); This way the CSS is applied correctly. From what I've studied, this routine above is JQuery call (https://www.w3schools.com/jquery/html_addclass.asp). The example I reported for the mask is also JQuery call (https://plugins.jquery.com/jquery.inputmask/) I tried to call the mask routine in a similar way to the addClass routine, but without success. UniEdit1.JSInterface.JSCall ('inputmask', '999.999.999-99'); I wanted to understand why JSCALL worked with addClass and did not work with inputmask? I may be making trouble with everything, if anyone can clear me up I would be grateful. How to make JQuery calls, Js I still don't understand, I'm confused, if someone has some study material and can indicate it would be good too. thank you. 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.