mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +02:00
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:
@ -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) {}
|
||||
|
||||
});
|
||||
|
Reference in New Issue
Block a user