I have a xamdatagrid on top of a xamtabcontrol. The xamdatagrid scroll is not letting me scroll all the way down to see all my remaining rows. The xamdatagrid seems like its hidden at the bottom of the grid if that make sense. How to fix this issue. I will send you a screen shot of the datagrid issue.
Please reviews screenshot attachment.
Hello Boricua,Thank you for you feedback. I am glad that this solved your issue. If you are interested in getting priority support you can visit our page http://es.infragistics.com/renewal and renew your standard subscription with a priority one.Thanks,TeodorSoftware Developerwww.infragistics.com
Thanks that fixed the issue.
I will try your example in a hour or so. Im on my phone at the moment replying
Can you please send me information on how to get priority support from the chat services. I would live to get chat services support also.
Hello,
The issue you are experiencing is not related to the xamDataGrid or the xamTabControl but to the RowDefintions which you are using. You should set Grid.Row="2" on the xamTabControl since it is the parent in which the xamDataGrid is hosted and all elements inside the xamTabControl will be in the same Row in which the xamTabControl is put. In your case you haven't set explicitly a row for the xamTabControl which means the Grid.Row="0" will be set automatically and the xamDataGrid will be also in Grid.Row="0" no matter that you have set something different on the children controls. I have modified the sample with your code snippet and it is now working.Please review the attached project and see whether it works for you to set: <igWindows:XamTabControl Name="xamlTabControl1" Grid.Row="2">
Thanks,TeodorSoftware Developerwww.infragistics.com