Transform attributes before passing them to the row's widget

This commit is contained in:
Nathan Gray
2011-09-14 15:44:54 +00:00
parent ad99ce981f
commit 8b1a63e1ee
6 changed files with 3 additions and 10 deletions

View File

@ -401,6 +401,9 @@ var et2_dataview_rowProvider = Class.extend({
entry.widget.id = data.id;
}
// Adjust data for that row
entry.widget.transformAttributes(data);
// Call the setDetachedAttributes function
entry.widget.setDetachedAttributes(nodes, data);
}