Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
15
How to Get Group Name wile dragging column in group area with new version InfragisticsWPF4.DataPresenter.v18.2 ?
posted

Hi team ,

I need to get Group Name while grouping using dragging columns in group by area section  with new version i.e InfragisticsWPF4.DataPresenter.v18.2

previously it  was working fine when i was using  v9.2.but after upgradation of infragistic version its not working .  Could you plese help for this issue 

But now i am unable to get group name after upgrading infragistic version i.e InfragisticsWPF4.DataPresenter.v18.2

Below i mentioned 

private void DraggedGroupByCommandExecute(object parameter) //This Event is drag and drop groups
{
XamDataGrid dg = parameter as XamDataGrid;
if (dg == null) return;

var data = dg.GroupByArea.GroupedFieldLabels; //picking favorite group name 

}