Just commiting current state of my work on the 'dataview' (grid), does NOT do anything usefull right now

This commit is contained in:
Andreas Stöckel
2011-08-29 15:04:10 +00:00
parent 6a2d5d8b36
commit 97418ebbbb
8 changed files with 1349 additions and 1 deletions

View File

@ -0,0 +1,23 @@
/**
* eGroupWare eTemplate2 - Contains the dataview base object.
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package etemplate
* @subpackage dataview
* @link http://www.egroupware.org
* @author Andreas Stöckel
* @copyright Stylite 2011
* @version $Id$
*/
var et2_dataview_IInvalidatable = new Interface({
invalidate: function();
});
var et2_dataview_IDataRow = new Interface({
updateData: function(_data);
});