I have a programmatic created RadGrid that has a GridButtonColumn in it. I also have a Radlistview that I'm using on the same page.
I need the button click on the radgrid to update the radlistview via a Radajaxmanagerproxy. My issue I'm running into is that the GridButtonColumn that adds the button doesn't have an ID that I can link it to. I've tried using the ItemCommand event on the ajaxmanager and I don't get a result.
How would I set this up?
I need the button click on the radgrid to update the radlistview via a Radajaxmanagerproxy. My issue I'm running into is that the GridButtonColumn that adds the button doesn't have an ID that I can link it to. I've tried using the ItemCommand event on the ajaxmanager and I don't get a result.
How would I set this up?
GridButtonColumn bc = new GridButtonColumn();dg.MasterTableView.Columns.Add(bc);bc.HeaderText = "Add";bc.ButtonType = GridButtonColumnType.PushButton;bc.CommandName = "Add_Click";bc.Text = "Add";<telerik:AjaxSetting AjaxControlID="ProductCrossSaleGrid" EventName="ProductCrossSaleGrid_ItemCommand"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadListView1" LoadingPanelID="PricingLoadingPanel" /> </UpdatedControls></telerik:AjaxSetting>