Gantt chart progress

This commit is contained in:
Nathan Gray
2014-05-21 22:11:36 +00:00
parent 38419b2abe
commit ccdb54a366
3 changed files with 158 additions and 22 deletions

View File

@ -688,8 +688,13 @@ etemplate2.prototype.getValues = function(_root)
// Store the value of the widget and reset its dirty flag
if (value !== null)
{
// Namespaced container has its own value, don't put it down one more level
if (_widget.createNamespace)
{
jQuery.extend(_target,value);
}
// Merge, if possible (link widget)
if(typeof _target[id] == 'object' && typeof value == 'object')
else if(typeof _target[id] == 'object' && typeof value == 'object')
{
_target[id] = jQuery.extend({},_target[id],value);
}