[Limits] Show limits from scrolling list view

WTD-1223.
This commit is contained in:
Victor Woeltjen
2015-06-08 11:57:05 -07:00
parent f4adc6a889
commit 4ab36bd421
5 changed files with 15 additions and 12 deletions

View File

@ -50,7 +50,9 @@ define(
* @returns {string} the text to display
*/
getValue: function (domainObject) {
return domainObject.getModel().name;
return {
text: domainObject.getModel().name
};
}
};
}