This question is locked. New answers and comments are not allowed.
Hi,
I have a property :
I have a property :
Protected WithEvents m_TabDetailDomainDataSource As DomainDataSource
Public ReadOnly Property TabDetailData()
Get
If m_TabDetailDomainDataSource IsNot Nothing Then
Return m_TabDetailDomainDataSource.Data
End If
Return Nothing
End Get
End Property
And XamWebGrid:
<telerikGridView:RadGridView ItemsSource="{Binding TabDetailData}" />
When m_TabDetailDomainDataSource.Data have any row, grid binding ok.
when i reload data and m_TabDetailDomainDataSource.Data have not any row, grid do not rebinding and row AddNewItem is disable. Why?
Thanks,
