Most voted "maskmoney" questions
14 questions
Sort by count of
-
4
votes1
answer1510
viewsMask for monetary values
I wanted to create a mask for monetary values, where the person would type and enter the scores and separations of the decimals automatically. Ex: R$ 1 R$ ,11 R$ 1,10 R$ 11,00 R$ 110,00 R$ 1,110,00…
-
2
votes1
answer5856
viewsmaskMoney without having to select input
Guys I’m using maskMoney but it only format value if I click the input, have you change it? That is to format it as soon as the page is loaded? $(function() { $("input").maskMoney({ allowNegative:…
-
2
votes2
answers1446
viewsmaskMoney does not work on input within table
Here I call the mask wearing class $(function($){ $(".dinheiro").maskMoney(); }); in form inputs works normal, but in table does not work. function addProd(obj) { $('#add_prod').val(''); var id =…
-
1
votes1
answer1073
viewsCalculate formatted input (mask)
I have 2 inputs, quantity and value. The input value is using the plugin Jquery Maskmoney it is configured as follows: $('.money').maskMoney( { allowNegative: true, thousands: '.', decimal: ',',…
-
1
votes1
answer928
viewsHow to treat a decimal field with no homes after comma in a jquery mvc c#mask
I have a model with the following definition: [Display(Name = "Quantidade / Volume:")] public Int32 RoQuantidade { set; get; } In my View to fill the data when empty, that is, that have not yet been…
-
1
votes1
answer2613
viewsGet Inputs with type="money"
$(function() { $("input[name*='pvn'").maskMoney({ thousands : '.', decimal : ',' }); }) I do this to pick up inputs with name='pvn' and apply a mask, but I would like to apply this mask to all…
-
1
votes1
answer698
viewsChange Real Angular Mask 2
I have a field with value formatted with currency 'BRL':'true:'2.0-0'. The value it brings me is like this: R$ 500,000,000. I would like to know how to leave as follows: 500,000,000.
-
1
votes1
answer924
viewsCalculation problems with jquery.maskMoney
Guys I have a javascript that makes the perfect calculation between 3 inputs. Being them. 1- COST, RECEIVES THE COST OF A PRODUCT 2- SALE, receives p selling price, and automatically calculates…
-
1
votes1
answer1086
viewsHow to make Maskmoney correctly load value in input when entering page
I am trying unsuccessfully to make Maskmoney load the format value when entering the page, I know there is a link right here in the OS with a similar question, but even with the example I am not…
-
0
votes2
answers462
viewsHow to format numerical data extracted from the database for monetary values?
I’m using the library jquery.maskMoney.js to format the system’s monetary data. But when data is saved in the database and returned to the system screen formatting is lost. How to resolve this…
-
0
votes1
answer61
viewsmaskMoney Jquery on Gridview
Guys I need to make a coin mask using Maskmoney where the Textbox comes from a dynamically generated Gridview or I don’t know how many lines there are in it. I’m doing it this way but it only works…
-
0
votes2
answers106
viewsMaskmoney does not work on duplicate input via javascript
Good night, you guys, I have a code that uses maskmoney. I’m using cloneNode to copy a div, it works, but the input I use maskmoney does not work in the copied fields. Someone can help ? //script…
-
-1
votes1
answer109
viewsApply maskMoney to dynamically added fields
I have a form where I add valor, data, detalhes_transacao, however, these fields are added dynamically through a javascript. The problem is that the value mask (maskMoney) works only in the first…
maskmoneyasked 5 years, 2 months ago Sr. André Baill 6,946 -
-1
votes1
answer85
viewsCurrency formatting in input calculation
The script idea is correct. I just couldn’t put the currency formatting in the "minimal preco_n" field (with value script). If I put real currency formatting in that input, it does not calculate.…