Hey there,

You'll want to use the truncateToFit property of the item renderer ClassFactory.

   var rendererFactory:ClassFactory;
   rendererFactory = new ClassFactory(Label);
rendererFactory.properties = { truncateToFit: true, styleName: "cellText" };
   column.itemRenderer = rendererFactory;

Adrian

senthilkumarirtt wrote:

hi i want to implement the ellipsis concept in Advanced datagrid in flex to avoid truncation of lengthy name of data.


Reply via email to