or
private
void
ContactsGridViewRowLoaded(
object
sender, RowLoadedEventArgs e)
{
e.Row.MouseLeftButtonUp +=
delegate
(
object
sender1, MouseButtonEventArgs e1)
{
MessageBox.Show(
"click!"
);
};
}
Hi,
I am working on WPF.\ and we are using telerik controls in our project.
we are implementing Expand all rows functionalaity in Telerik radgridview . In our radgridview few rows has childgrid and if we are using expandallhierarchyitems() method then it is expanding all rows. My requirment is when i click on expand all button then it shoud expand only those rows which have child grid control.
<telerik:GridViewDataColumn DataMemberBinding="{Binding SourceName}" Header="{Binding SourceObjectHeader}" >
Thanks,
Jason