I am trying to add multiple Telerik RadGrid to a listView.
On the initial addition it fires the RadGrid ItemDataBound event.
However, when users click to add another, nothing gets added on the
screen since the event is not fired if there are multiple grids.
'// This is called after users click to add a new gridProtected Sub LVScenarios_ItemDataBound(sender As Object, e As RadListViewItemEventArgs) Handles LVScenarios.ItemDataBound If TypeOf e.Item Is RadListViewDataItem Then Dim scenarioGrid As RadGrid = DirectCast(e.Item.FindControl("GVScenarios"), RadGrid) If Not scenarioGrid Is Nothing Then AddHandler scenarioGrid.ItemDataBound, AddressOf scenarioGrid_ItemDataBound scenarioGrid.DataSource = scenarioDataSource scenarioGrid.DataBind() '// If only one gird in the LVScenarios datasource, then the grid itemDataBound is fired, if more than one it is skipped and nothing ends up on the screen End If End IfEnd Sub