Posts by Lucas • 227 points
9 posts
-
0
votes3
answers640
viewsA: Grouping by day and by date period
I did so, a query that receives all tabs first. then comes select with a sum case DECLARE @StartDateTime DATE DECLARE @EndDateTime DATE SET @StartDateTime = '01/05/2017' SET @EndDateTime =…
-
0
votes1
answer47
viewsA: Modal passing data null
Failed to add fields VALOR_PARC and VENC_PARC in the bind of your template public ActionResult Create([Bind(Include = "CONTRATO_FIN,PARCELA_PARC,TIPO_PARC,…
-
1
votes3
answers208
viewsA: Read input
has a - in your field id <input type="text" id="campo-de-busca" onKeyPress="teclaPressionada()" placeholder="Nome"> but what you would not be onclick instead of onkeypress?…
javascriptanswered Lucas 227 -
1
votes1
answer1609
viewsA: Set the download location and name of each downloaded file - Selenium Webdriver C #
You can’t do that. What you can do is create a temporary directory and move your files after inserted. Using system.IO; string downloadDirectory = @"c:\temp\MyTest.txt"; //No seu caso, o diretório…
-
1
votes2
answers262
viewsA: Dropdownlistfor selected values do not persist
I don’t know if this way of yours works with Multiselect. Do it like this, your HTML will be a Listbox and not a Dropdownlistfot @Html.ListBox("Estagios", null, new { @class =…
-
0
votes1
answer83
viewsA: Interjection between a correct and incorrect question with a progress bar?
Your question was confused. You should have slashed your HTML code. Follow the commented code. <!DOCTYPE html> <html> <head> <style> #myProgress { width: 100%;…
-
1
votes4
answers7010
viewsA: jQuery delete the last character typed in an input
With the click of the button you will capture the input value and remove the last character. After that you will set the new value for the input. $("#idBotao").click(function(){ var input_novo_valor…
-
1
votes4
answers1418
viewsA: How to format result with comma and dot?
I use the plugin maskMoney Then just customize your field with jQuery. $(document).ready(function () { $("#valor").maskMoney({ thousands: '', decimal: ',', allowZero: true }); }); HTML <div…
javascriptanswered Lucas 227 -
3
votes3
answers4226
viewsA: Persist information using Viewbag?
I was researching about Viewbags and I ended up finding that question, but my question was: Utilise Viewbags or Viewmodels? The @Maniero response solves your problem with the basic concept of the…