How can I change the backcolor row GridEx(GridJanus) with a condition in c#

thanks

link|improve this question

This is not clear enough - can you show us some code?? What have you done so far?? What condition do you want to base your decision on?? You need to elaborate a bit more.... – marc_s Dec 10 '11 at 13:22
feedback

2 Answers

up vote 2 down vote accepted
private void Grd_Detail_FormattingRow(object sender, Janus.Windows.GridEX.RowLoadEventArgs e)
{
    int i = 1;
    for (i = 0; i < Grd_Detail.RowCount; i++)
    {
        string s = Grd_Detail.GetRow(i).Cells["FN"].Value.ToString();
        if (s == "True")
        {
            if (e.Row.RowType == Janus.Windows.GridEX.RowType.Record)
            {                 
                Janus.Windows.GridEX.GridEXFormatStyle rowcol = new GridEXFormatStyle();
                rowcol.BackColor = Color.LightGreen;
                Grd_Detail.GetRow(i).RowStyle = rowcol;
            }
        }
    }
}
link|improve this answer
feedback

I can't link to it directly, but I found this in a post by Ravi Kota on the Janus Systems forums. I'm not able to test this at present and it is an older post... Conceptually it looks right though.

GridEXFormatCondition fc;

fc = new GridEXFormatCondition(GridName.RootTable.Columns[ColumnName], ConditionOperator.GreaterThan, 0);

fc.FormatStyle.ForeColor = Color.Blue;

GridName.RootTable.FormatConditions.Add(fc);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.