Hi,
This is my first time using Telerik controls. I need some input/help in the problem I face with RadGrid. I have a functionality where I have to bind empty data on a asp button control click and rebind the original data on another asp button click. Both the functionality are through same button which I have in my page. When I click the button for the first time, i'm able to bind empty data to the grid. I use below code
grdMember.DataSource = dtMembers.Clone();
grdMember.DataBind();
When I want to bind the original data, I'm not able to. To rebind the original data, I use below code
grdMember.DataSource = dtMembers;
grdMembers.DataBind();
Am I missing something here?
Ananth
This is my first time using Telerik controls. I need some input/help in the problem I face with RadGrid. I have a functionality where I have to bind empty data on a asp button control click and rebind the original data on another asp button click. Both the functionality are through same button which I have in my page. When I click the button for the first time, i'm able to bind empty data to the grid. I use below code
grdMember.DataSource = dtMembers.Clone();
grdMember.DataBind();
When I want to bind the original data, I'm not able to. To rebind the original data, I use below code
grdMember.DataSource = dtMembers;
grdMembers.DataBind();
Am I missing something here?
Ananth