We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Using autocomplete and richtext in GGC

Would it be possible to utilize autocomplete with richtextbox in GGC?  Also, any possibilities to have an inline richtextbox within the cells with the newest version of Syncfusion?


2 Replies

RO Ron September 3, 2013 05:40 PM UTC

Specifically, how would I use an in-place Richtextbox in a nested table?



KC Karuppasamy C Syncfusion Team November 21, 2013 07:06 AM UTC

Hi Ron,

Thank you for using Syncfusion Products.

We have analyzed your query at our end.Please make use  of CellType property  by which you can set the richtext box in particular index of any table.please make use of below code,

Code:

void gridGroupingControl1_QueryCellStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableCellStyleInfoEventArgs e)
        {
            if (e.TableCellIdentity.RowIndex == 2 && e.TableCellIdentity.ColIndex == 2)
            {
                e.Style.CellType = GridCellTypeName.RichText;
                e.Style.BackColor = Color.Yellow;
            }
        }

Please let me know  if you have any concerns.

Regards,
Karuppasamy C.

Loader.
Live Chat Icon For mobile
Up arrow icon