PortfolioItems のラリーグリッドがあり、構成列に PercentDoneByStoryPlanEstimate を含めると、期待どおりに進行状況バーが表示されます。しかし、プログレス バーにカーソルを合わせると、Rally 自体に表示される追加情報を含むツールチップが表示されません。
ツールチップをアプリに表示するにはどうすればよいですか?
サンプルコード:
Rally.onReady(function() {
Ext.define('CustomApp', {
extend: 'Rally.app.App',
componentCls: 'app',
launch: function() {
Rally.data.ModelFactory.getModel({
type: 'PortfolioItem',
success: function(model) {
this.grid = this.add({
xtype: 'rallygrid',
model: model,
columnCfgs: [
'FormattedID',
'Name',
'PercentDoneByStoryPlanEstimate'
]
});
},
scope: this
});
}
});
Rally.launchApp('CustomApp', {
name: 'Grid Example'
});
});