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

grid disappear instead on double clicking

1 Answer 35 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Maor
Top achievements
Rank 1
Maor asked on 23 Jan 2013, 05:58 AM
hello
when i try to use the example of double clicking edit that you have on your demos section i ran into a problem. the grid disappear instead of entering edit mode.
also, anybody knows how can i start the grid so it will be always in edit mode?
regards 
maor

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 23 Jan 2013, 06:12 AM
Hi,

Try the following code to show all items in edit mode on page load. Also make sure that you are using advanced data binding to bind the grid.
aspx:
<telerik:RadGrid ID="RadGrid1" runat="server"  AllowMultiRowEdit="true" . . .>

C#:
protected void Page_Load(object sender, EventArgs e)
{
        for (int i = 0; i < RadGrid1.PageSize; i++)
        {
            RadGrid1.EditIndexes.Add(i);
        }
}

Thanks,
Shinu
Tags
Grid
Asked by
Maor
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or