Posts by netovgs • 163 points
6 posts
-
0
votes2
answers103
viewsA: Return of select brings previous value - jQuery
I did it this way: $(document).ready(function() { var qtd = 0; $('select').on('blur', function(e) { qtd = 0; $("#tabela tbody tr:not(.filtered)").each(function() { qtd +=…
-
1
votes2
answers103
viewsQ: Return of select brings previous value - jQuery
I have a table #table and I would like every time I make a filter by select it to add the amount that is in column 6 eq(5). With the code below it is running, however it displays the previous value…
-
1
votes0
answers223
viewsQ: VB.NET + Powershell
I would like to create a program in VB.NET that runs the following code in Powershell Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register…
-
2
votes0
answers524
viewsQ: Find values with text part
I have a problem, I have a problem spreadsheet. Currently I can do the search by name, but I wanted to type only part of the name, for example, instead of typing "Raquel", type "Ra" he already bring…
-
11
votes3
answers5016
viewsQ: Form validation in modal using Bootstrap
I have the following question. I have a simple record and I want you to tell me when registering a new record: If the field is empty it shows me the message "Fill in the fields"; If the form field…
-
1
votes1
answer162
viewsQ: PHP-Mysql-Dialog
I’m making a page, where I have a mysql database connecting with PHP. What I wanted is this, I have a form with: pais(combo); nome(text);empresa(text), and I want you to: When you fail to complete…