Mercurial > lada > lada-client
view app/lib/Helpers.js @ 400:4fdc09ebf21d
Enable multiselect in probe list and download LAF export via POST request.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Wed, 04 Sep 2013 09:56:22 +0200 |
parents | 1e1ee8abf91b |
children | 60a2812568cb |
line wrap: on
line source
/** * Helper class * This class provides some globally used functions. */ Ext.define('Lada.lib.Helpers', { statics: { /** * Function to translate a timestamp into a date */ ts2date: function(v, record){ // Converts a timestamp into a date object. return new Date(v); } } })