Posts by Michele • 103 points
6 posts
-
1
votes1
answer68
viewsA: Data table Java Script - Individual column Searching (select inputs)
I solved the problem as below: function BuscaEmpresa() { var selEmpresa = $('#selEmpresa').val(); var selGrupo = $('#selGrupo').val(); var cnpj = $('#cnpj').val(); var dataInicial =…
-
0
votes1
answer68
viewsQ: Data table Java Script - Individual column Searching (select inputs)
I would like to insert select inputs into my data table but I am not able to modify my data table the way it currently is. How do I put select input in my data table? Code: function BuscaEmpresa() {…
-
0
votes0
answers115
viewsQ: Date mask for android
I’m creating a mask in a function in jQuery, but Android does not work. On PC and iOS works normally. I have made several attempts of what were indicated in the forums, but I was not successful. The…
-
5
votes2
answers459
viewsQ: Ternary Operator C#
I would like to add one more condition to my ternary operator. Is more than two conditions possible? Or is there another possibility? I need to enter the property Productocatalogodigital which is of…
-
1
votes2
answers2522
viewsQ: Regular expression for Telephones only with numbers and DDD C#
I would like a help to create a regular expression in C# that validates number of phones with DDD but no dots and dashes, only numbers. Would be in XX12345678 and XX 123456789 format.
-
0
votes1
answer45
viewsQ: Write a default value within a given cell in C#
I’m making a console application that reads data from a spreadsheet and compares it with values reported in the database. There is a default value, if a field of this worksheet is not filled in, I…