This question is locked. New answers and comments are not allowed.
Can the RadGridView have rows inserted through the .vb/.cs code behind without identifying the ItemSource in the xaml layer?
We're able to show one row in a grid which lives inside of a Telerik tab control. When we try to update the ItemsSource in a routine we're not seeing a new row. The code is:
We're able to show one row in a grid which lives inside of a Telerik tab control. When we try to update the ItemsSource in a routine we're not seeing a new row. The code is:
Private Sub InsertNewFunding(ByRef oTrainingControl As smTraining)
Dim addNewFunding As New OurSL.OurServiceReference.TrainingFunding
oTrainingControl.OurTrainingFundingList.Add(addNewFunding)
oTrainingControl.grdCostContribution.ItemsSource = oTrainingControl.OurTrainingFundingList
End Sub
Can this be done without mentioning Binding and ItemsSource in the xaml layer?
Thanks.
KOG