Some gantt changes:

- For project elements, status should be as in element edit (completion %)
- Wrap columns in a div with class based on field, for column specific styling
- Give resources column some hover CSS to display all contents
This commit is contained in:
Nathan Gray 2015-02-23 22:16:25 +00:00
parent 105bfc8f8f
commit 68c08697c7

View File

@ -306,7 +306,7 @@ var et2_gantt = et2_inputWidget.extend([et2_IResizeable,et2_IInput],
this.widget.set_value(value);
value = $j(this.widget.getDOMNode()).html();
}
return value;
return '<div class="gantt_column_'+this.name+'">' + value + '</div>';
};
}