Posts by Zorkind • 361 points
11 posts
-
0
votes1
answer1045
viewsA: Assinar xml Nfse paulistana
I had the same problem. To solve just pass the blank ID. By default the URI in the Ference comes NULL just pass string.Empty and all is right.…
-
1
votes1
answer830
viewsA: How do I make a field mandatory?
To keep the solution of this in a way that meets the scope of your exercise, I made these changes to your code, but I did it in a way that is simple enough for your teacher not to think bad and of…
-
4
votes1
answer2137
viewsA: The method or operation is not implemented c#
Usually this error occurs when you use Visual Studio’s help to create members of an interface that has been added to a class you have created, take a look at this class SqlDAO, I’m pretty sure…
-
3
votes4
answers662
viewsA: How to improve SQL performance with IN clause?
Try with EXISTS SELECT id, nome, url FROM categorias WHERE status = 1 AND EXISTS(select top 1 1 FROM cliente_categorias where id_categoria = id_ls) GROUP BY url…
-
0
votes5
answers545
viewsA: Different format for display and return (bootstrap-datepicker)
Try this on your form $("#formulario").submit( function() { var dateObject = $("#calendarioIni").datepicker("getDate"); $("#calendarioIni").val(dateObject.getFullYear() + '-' + dateObject.getMonth()…
-
1
votes3
answers392
viewsA: How do I find the first Tuesday of a month?! (SQL)
I made this solution to Sql Server because it is the bank that I have installed here at work, but I think you can convert to PL Sql easily, only do not do because would not have to test. declare…
-
1
votes1
answer121
viewsA: Select within for
Do the query containing everything you need at once. Select [coluna que tem o valor 'Queue'], [Coluna que tem o valor de 'Fisico'], [Coluna que tem o valor de 'Virtual'], queue_name, nome_fila,…
-
2
votes2
answers2644
viewsA: How to convert date and time with Javascript?
Using the Moment.js component is very easy. Just download or link the library on: https://momentjs.com/ And use javascript code: var data = moment("Dec 11, 2017 01:00AM", "lll").format("DD/MM/YYYY…
javascriptanswered Zorkind 361 -
0
votes1
answer51
viewsA: Bootstrap problem with Javascript
Putting the form-control in the end, it worked in my tests. What happens is that you are using a concatenated identifier on className, therefore the form-control in the beginning breaks the sequence…
-
2
votes3
answers7594
viewsA: How to align content in <td>?
Okay, below is the code: <table class="table table-striped table-bordered table-hover" id=""> <thead> <tr> <th>Icone</th> <th>Nome</th>…
-
1
votes3
answers7594
viewsA: How to align content in <td>?
The good thing about tables is that you can align vertically very easy. Just use vertical-align: middle