Hello guys;
I was trying to select the value from a specifc cell in a radGrid who has been previouisly check with a check column. I tried using the ValueChanged event but still it doesn't work. I looked all over the forum but still couldn't get the value. My code in general looks like this:
Thanks in advance for your help.
I was trying to select the value from a specifc cell in a radGrid who has been previouisly check with a check column. I tried using the ValueChanged event but still it doesn't work. I looked all over the forum but still couldn't get the value. My code in general looks like this:
private
void
grdClientes_ValueChanged(
object
sender, EventArgs e)
{
foreach
(GridViewDataRowInfo row
in
grdClientes.Rows)
{
if
(row.Cells[
"Seleccionado"
].Value ==
"On"
)
{
_selectedRowIndex += (
int
)row.Cells[
"Cantidad"
].Value;
}
}
}
Thanks in advance for your help.