Posts by Araújo • 57 points
6 posts
-
0
votes0
answers30
viewsQ: Add a scroll bar in multiselect
I want to put a scroll bar in a multiselect, only I still can’t figure out how to do it :/ I have the following code: HTML <div class="col-md-2"> <label>Teste</label><br />…
-
1
votes1
answer369
viewsQ: Linq - filters between dates
I have a method which returns records from the database filtered between dates, and is built as follows: public List<ProcessosInformacoesAnexos_Model> DevolveTodosAnexos(DateTime dataInicial,…
-
1
votes0
answers58
viewsQ: How to pass a view ID without a template
I’m trying to send a template-less view ID to a controller, but I’m not getting it. the code I have is as follows: View @model string @{ ViewBag.Title = "Edit"; string classHtml = ""; } @using…
-
1
votes1
answer127
viewsQ: How to get the url from Chrome Devtools
I have the following code: function AbreModalEnvioRelatorioDiligencia(id, idProcesso) { debugger $("#myModal").load("..\..\_ComunicaDiligencia?idProcesso=" + idProcesso + "&idInformacao=" + id,…
-
-1
votes1
answer25
viewsQ: APS.NET MVC - BD data split
I need to do a function in VB which allows to list in a Dropdown the data of a field in the database. I have to list the data from the 'Eixox' field (in the figure above) in the Dropdown. The doubt…
-
2
votes1
answer2008
viewsQ: SQL Server - Split Function
I have the following table: The goal is to make, in SQL Server, a function Split (by ',') the column EixoX where the TipoGrafico is different from 'Stockchart'. That is, if the TipoGrafico is…