Hi I have a RadDataForm which I fill data from Grid. My problem is unabled add button when my collection is empty.Colection is below. Is there any way to solve this?
private ObservableCollection<IGridItemViewModel> items; public ObservableCollection<IGridItemViewModel> Items { get { return items; } set { if (items != value) { items = value; items.CollectionChanged += items_CollectionChanged; } } }
Thak you for helping me
Ondrej