Skip to content Skip to sidebar Skip to footer

Losing 'FormattedID' Link After Applying Style Changes

I have a rallygrid object set up with the following settings for columnCfgs: columnCfgs: [ 'FormattedID', 'Name', 'PlanEstimate' ] Which gives me a nice formatted link

Solution 1:

You can use the FormattedIDTemplate class to properly format the link:

{
    text: 'ID',
    width: 60,
    xtype: 'templatecolumn',
    tpl: Ext.create('Rally.ui.renderer.template.FormattedIDTemplate')
}

Note that the FormattedIDTemplate class is marked as private, and it's interface may change in future versions of the sdk.


Post a Comment for "Losing 'FormattedID' Link After Applying Style Changes"