Posts by Sandcar • 246 points
3 posts
-
3
votes1
answer354
viewsA: JSON output in a table
If your query data is returning well, then the problem seems to be in the way you loop the data. the _each function I think is the _underscore technology. I think you should use $.each:…
-
5
votes1
answer237
viewsA: How to convert a value in UNIX type Timestamp to Datetime?
A way to treat Unix timestamp; string start = "1396148900"; // o teu exemplo; // Criar equivalente Datetime > UNIX Epoch. (seconds since 1970) DateTime dtIni = new System.DateTime(1970, 1, 1, 0,…
-
5
votes2
answers2612
viewsA: Javascript mask for input hours
I don’t know if the use of jQuery based plugins is alternative to your project, but there is an excellent plugin for various types of mask: jquery.inputmask. Then you could do something like:…
javascriptanswered Sandcar 246