Is it possible to embed a TabControl into the CardView?
We have a grid with more den 100 Columns.We would like to group the columns, and show a TabPage for each group in the TabControl. The TabPage should show the edit controls of the attached columns of the group.
Thanks,
Hi,
No, there's no way to embed a tab control into a grid like this. But if you want to show your data on separate tabs, why use a grid? Why not simply use a TabStrip with some controls on the tab to display the data?
Hi Mike,
we are using a grid to show all the items in a list. We thought, we could use a second grid (the same class) as CardView to show the Details to the current selected item of the first grid.
Because of the many columns we are using in the first grid the column chooser to show only selected columns. It were nice to have the same functionality also in the Detail-Mask. But there are still too many columns, and thats why the idea with TabPages.
If the CardView can not have TabPages, than we have to implement the column chooser in a TabControl (or TabStrip).
Thank you for the AnswerJaga