Hello,
I need the filtered and sorted results from a RadGridView Control. RadGridView.Items contains the sorted/filtered/etc. data as DataItemCollection but I wonder if I could get the results as IEnumerable<T> and not as DataItemCollection. I need to have this because I am bound to a specific API.
I know I could cast it using RadGridView.Items.Cast<SpecificType>(); but I do not know the specific type because it is determined at runtime.
Thanks in advance
I need the filtered and sorted results from a RadGridView Control. RadGridView.Items contains the sorted/filtered/etc. data as DataItemCollection but I wonder if I could get the results as IEnumerable<T> and not as DataItemCollection. I need to have this because I am bound to a specific API.
I know I could cast it using RadGridView.Items.Cast<SpecificType>(); but I do not know the specific type because it is determined at runtime.
Thanks in advance