mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 00:14:57 +02:00
Add some CSS during column resize to indicate which columns are fixed and which columns will change when you resize.
This commit is contained in:
@ -386,6 +386,11 @@ var et2_dataview = Class.extend({
|
||||
.attr("align", "left")
|
||||
.append(cont)
|
||||
.appendTo(this.headTr);
|
||||
|
||||
if(this.columnMgr && this.columnMgr.columns[i])
|
||||
{
|
||||
column.addClass(this.columnMgr.columns[i].fixedWidth ? 'fixedWidth' : 'relativeWidth');
|
||||
}
|
||||
|
||||
// make column resizable
|
||||
var enc_column = self.columnMgr.getColumnById(col.id);
|
||||
|
Reference in New Issue
Block a user