Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1175
How to set Text like "..." on editorbutton in Grid's Cell;
posted

Hi 

ultraGrid1.DisplayLayout.Bands[0].Columns["followUp"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.EditButton; 

and i want to set text "..."  on this this edir button. I did not find any way to do this. CellButtonAppearance just provides appearance settings color, font and alignments etc.

 

Regards

Asad Naeem 

Parents
  • 469350
    Verified Answer
    Offline posted

    Hi Asad,

        The button provided by setting the Style of the column to EditButton doesn't support text. So you could do what you want in one of two ways:

        1) Use an image on the ButtonAppearance.

        2) Use an editor. Place an UltraTextEditor on the form and use the ButtonsRight collection to add an EditorButton. Then you can assign text to the button. Set the column's EditorControl to the UltraTextEditor control to put it into the grid. 

Reply Children