herickbrandao

Results 2 comments of herickbrandao

This pattern solves the problem for me: ```js Maska.create('.money-mask', { mask: '[ "J##.###,##","J#.###,##","J###,##","J##,##","J#,##" ]', tokens: { 'J': { pattern: new RegExp('(-|[1-9])') }, }, }); ```

You can customize your jsGrid like: ```js $("#grid").jsGrid({ ... /* Insert button */ onItemInserting: function(args) { // cancel insertion of the item and do anything you want args.cancel = true;...