Hi,
How can i achieve Child Level/Sub-Level Paging in XamDataGrid?
If it is possible can you provide me sample ?
or
if child level paging is not supported then is there any workaround to achieve that?
Thanks
Naitik
Hi Yanko,
Thanks for your reply.
I will follow up with Developer Support Management.
Once again thank you very much for your support.
Thanks & Regards
Hello naitik,
After some research I found out that the functionality that you are looking for is not supported. This is why it has been determined to be a new product idea. I have sent your product idea directly to our product management team. Our product team chooses new product ideas for development based on popular feedback from our customer base. Infragistics continues to monitor application development for all of our products, so as trends appear in requested ideas, we can plan accordingly.
We value your input, and our philosophy is to enhance our toolset based on customer feedback. If your idea is chosen for development, you will be notified at that time. Your reference number for this product idea is PI12090159.
If you would like to follow up on your product idea at a later point, you may contact Developer Support management via email. Please include the reference number of your product idea in the subject and body of your email message. You can reach Developer Support management through the following email address: dsmanager@infragistics.com
Thank you for your request.
Last Question :
My actual aim is to achieve Data Visualization for Child Table using Scroll bar.
I am able to do Data Visualization for Parent Table on Scroll bar.
But my question is : is same kind of Data Visualization also possible for Child Table??
because i have large no of child records under each parent row. I want to achieve is, on scrolling i want fetch data as and when needed (We have already achieved this for parent table) .
so does XamDataGrid Supports this??? (Yes/No)
Thanks for your quick response.
I got your suggestion. My actual is aim is to achieve Data Visualization for Child Table using Scroll bar.
so does XamDataGrid Supports this???
Hello Naitik,
I have been looking into your post and currently we do not provide a built-in functionality which meets the requirements from your first two questions. I have already submit a product idea regarding this.
About your third question I can suggest you handle the ‘RecordExpanded’ event and to collapse all other records like e.g. :
private void XamDataGrid1_RecordExpanded(object sender, Infragistics.Windows.DataPresenter.Events.RecordExpandedEventArgs e)
{
if (rec == null)
rec = e.Record;
return;
}
rec.IsExpanded = false;
If you have any other questions on this matter, feel free to ask.