First version of the dataview which does... well... 'something' at least (currently shows dummy rows with non-etemplate content) Need to cleanup code and test auto hiding of rows (code is actually there)

This commit is contained in:
Andreas Stöckel
2011-08-31 15:39:24 +00:00
parent 4088300b57
commit 035a4d369f
13 changed files with 879 additions and 131 deletions

View File

@ -10,14 +10,26 @@
* @version $Id$
*/
"use strict"
/*egw:uses
et2_core_inheritance;
*/
var et2_dataview_IInvalidatable = new Interface({
invalidate: function();
invalidate: function() {}
});
var et2_dataview_IDataRow = new Interface({
updateData: function(_data);
updateData: function(_data) {}
});
var et2_dataview_IViewRange = new Interface({
setViewRange: function(_range) {}
});