I have this condition as shown in the image selecting whatever I define ( It will be Row 0 for real after testing ) nRowIndex = 0
but you can see that it selects with the highlighted row after the sort
but the Arrow Row indicator is still pointing to whatever row was selected by the UI
before sort
private void dgvResults_Sorted(object sender, EventArgs e)
{
dgvResults.ClearSelection();
int nRowIndex = dgvResults.Rows.Count – 6; // Would force to Zero per my requirements
dgvResults.Rows[nRowIndex].Selected = true;
dgvResults.Rows[nRowIndex].Cells[0].Selected = true;
}
Can I affect that Row indicator arrow like I have the highlight for selected row ?
Is my selected row even properly selected if the row indicator is pointing to another row ?
Hi again!
We have confirmed that there’s a regression with the CurrentRow property not being updated when selecting a row from the server!
A fix is currently in QA and we’ll let you know as soon as the update is shipped!
Best,
Alaa
Hello,
We’re looking into this issue and we’ll get back to you ASAP!
Best,
Alaa
Please login first to submit.