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

how to set color to cell of next row and same column in child table

Hi,
I am using Gridgrouping control.
I have Parent-Child Relationship in the control.
I want to change values in cell of  rows values in child table.
when  I press down arrow key in current cell of row then   how to set color to cell of next row in parent table as well as child table
Please give me solution regarding to this.

Thank you and Regards,
Supriya

1 Reply

NK Neelakandan Kannan Syncfusion Team January 12, 2015 07:30 AM UTC

Hi Supriya,

 

Thank you for your interest in Syncfusion products.

 

If you want to set the current cell backcolor in GridGroupingControl, you can use QueryCellStyleInfo event. Using this event, you can set backcolor to CurrentCell.

 

Code Snippet:

Dim cc As GridCurrentCell    
    
Private Sub gridGroupingControl1_QueryCellStyleInfo(ByVal sender As ObjectByVal As GridTableCellStyleInfoEventArgs)
        cc 
= Me.gridGroupingControl1.TableControl.CurrentCell
        
If (cc.HasCurrentCellAt(e.TableCellIdentity.RowIndex, e.TableCellIdentity.ColIndex)  _
                    
AndAlso ((e.TableCellIdentity.TableCellType <> GridTableCellType.ColumnHeaderCell)  _
                    
AndAlso (e.TableCellIdentity.TableCellType <> GridTableCellType.RecordPlusMinusCell))) Then
            
e.Style.BackColor Color.Red
        
End If
    End Sub

 

Sample:

http://www.syncfusion.com/downloads/support/directtrac/117926/Sample_CurrentCell_Backcolor_VB-1317131189.zip

 

Please let me know if you have any concerns.

 

Regards,

Neelakandan


Loader.
Live Chat Icon For mobile
Up arrow icon