Posts by Rinaldo Santana • 111 points
4 posts
-
2
votes3
answers7042
viewsA: Angular 6 date and time in English
According to the official documentation of Angular, you can use the predefined formats of Datepipe, or if you prefer, customize their formats, I believe, will be indicated for your case. Read more…
angularanswered Rinaldo Santana 111 -
6
votes7
answers68940
viewsA: How to make SELECT with ORDER BY and different criteria?
I believe this works, I tested in another bank and it worked, I do not know if it will work in Mysql. select tabela.id, tabela.nome from (select 1 as ordem, id, nome from categoria where id= 100…
mysqlanswered Rinaldo Santana 111 -
0
votes3
answers710
viewsA: Sorting using Dbgrid with Clientdataset
Do a while on your table by giving an append on your Clientdataset. while not tbQuery.eof do begin ClientDataSet.Append; ClientDataSet.FiedByName('NomeDoCampo').AsString :=…
-
0
votes1
answer122
viewsQ: Use html tag to replace JSF components when possible
I am starting studies with JSF (Javaserver Faces) and writing a xhtml file, I came up with the following dilemma: Why not use HTML tag replacing some JSF compote, when possible? Example: use:…