Posts by João Paulo • 125 points
6 posts
-
3
votes1
answer205
viewsQ: How to create groups in regex to validate password criteria in Elixir?
I need to validate the criteria in a password: It must contain at least one capital letter. At least one tiny At least one number The size should be between 6 and 32 characters May not have any…
-
4
votes1
answer1580
viewsQ: How to Set Up Multiple Web API Get
I need to provide in my web api three forms of query: First Get with all "Getall" records, the second GET by id and a third GET with ribbon options, sent by client, e.g.: Name contains the letter…
-
1
votes1
answer655
viewsQ: Map relationships with Fluent API
I have three simple classes of city, state and country. I realized that simply declaring a property of the type Estado in class Cidade the foreign key is generated correctly. I would like to know…
-
1
votes2
answers643
viewsQ: How do I send data from a table html in a form post?
I have a form that contains a list within a tag table, how do I upload the data from this table to the table itself POST form? Without using hidden inputs. If possible in pure Javascript, but if no…
-
1
votes2
answers123
viewsA: How to intercept and cancel pressed key in IE and firefox
I managed to solve it that way: (function () { document.onkeypress = function (e) { //Código para retornar true ou false; }; })(); I tested in Chrome, Opera, IE and Firefox.…
-
1
votes2
answers123
viewsQ: How to intercept and cancel pressed key in IE and firefox
How to intercept and cancel pressed key in IE and firefox? I’m trying to javascript pure but if there is no way can be JQuery. I used the code below but it only worked on Chrome: <!DOCTYPE…