Ask Your Question
2

How can I conceal records from the datagrid that have an "active" status in the workflow?

asked 2022-08-15 11:00:00 +0000

woof gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2021-10-09 14:00:00 +0000

ladyg gravatar image

To conceal records from the datagrid that have an "active" status in the workflow, you can use a condition to filter out those records.

Here's an example code in C#:

// Assuming the datagrid is called dataGridView1
// The workflow status column is called "status" 
// Active status is marked as "A"

foreach (DataGridViewRow row in dataGridView1.Rows)
{
    string status = row.Cells["status"].Value.ToString();
    if (status == "A")
    {
        dataGridView1.Rows[row.Index].Visible = false;
    }
}

This code loops through each row in the datagrid and checks if the status column's value is "A". If it is, the row's visibility is set to false, effectively hiding it from the user's view.

You can modify this code according to your specific needs, such as changing the column name or the status value.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-08-15 11:00:00 +0000

Seen: 9 times

Last updated: Oct 09 '21