This is a migrated thread and some comments may be shown as answers.

Asynchronous radgridview

1 Answer 100 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Süleyman
Top achievements
Rank 1
Süleyman asked on 10 Mar 2011, 07:52 PM
Hi


I have problem in grid senario.
Firstly I have a grid an buton in the page.
I click the buton then I take the grids item row by row.I take the Address in grid's item then ı  execute this address to google map the google map send me a accuarcy for result.
For this accuarcy,If the accuarcy 1 the processed row's color red in that time.But I click the buton after that all result shown me same time.
I want to this proccess row by row.Can you help me?How can I do this senerio.


Best regards 

Suleyman Cebesoy

1 Answer, 1 is accepted

Sort by
0
Tsvetina
Telerik team
answered on 16 Mar 2011, 08:04 AM
Hi Süleyman,

I am not sure if I understand you correctly. By default, when you want to modify rows in RadGrid on button click, you iterate through the rows using code like this:

protected void Button1_Click(object sender, EventArgs e)
{
    foreach (GridDataItem row in RadGrid1.MasterTableView.Items)
    {
        //do something with the grid row        }
}

Once you modify the grid items, you should not rebind the control if you want them to keep their modified look.

Please, paste the code you use to modify the rows and if possible images of the desired effect and the result you get now, so we can see what exactly is happening wrong.

Kind regards,
Tsvetina
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
Tags
Grid
Asked by
Süleyman
Top achievements
Rank 1
Answers by
Tsvetina
Telerik team
Share this question
or