Posts by DontVoteMeDown • 2,535 points
52 posts
-
1
votes1
answer671
viewsA: Kendo UI Grid Export Excel
As I commented, you can grab the columns that are visible, as well as other data using the property columns grid: $(el).data("kendoGrid").columns From there you can create an array/Object with what…
-
28
votes6
answers28585
viewsA: How to get Timestamp in Javascript?
You can use the getTime() of the object Date: // Pegar do horário atual var timestamp = new Date().getTime(); // Pegar de uma data específica var timestamp = new Date(2013, 11, 17).getTime(); But be…