You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 29, 2024. It is now read-only.
Hello,
I tried to put mor than a Datagrid in a ListView, but when data changes app crashes. I found that the exception thrown is because Datagrid uses ListView and it is not possible to use a nested ListView.
I like it was possible to use multiple DataGrids in a ListView.
My situation is:
Class A {
string Title {get; set;}
B subprojects {get; set;}
}
Class B {
DateTime Date {get; set;}
string Name {get; set;}
}
and I like to render lots of A objects like:
LABEL: TITLE
DATAGRID(Columns: B.Date, B.Name).
Can you make it possible?
Thanks,
enryb
The text was updated successfully, but these errors were encountered:
I think you can use TabbedPage instead of your ListView to have one Datagrid per tab, will it solve your problem? Then you can have Label as Tab title and grid as the content of tab.
Anyway, you won't be able to have Listview inside Listview.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
I tried to put mor than a Datagrid in a ListView, but when data changes app crashes. I found that the exception thrown is because Datagrid uses ListView and it is not possible to use a nested ListView.
I like it was possible to use multiple DataGrids in a ListView.
My situation is:
Class A {
string Title {get; set;}
B subprojects {get; set;}
}
Class B {
DateTime Date {get; set;}
string Name {get; set;}
}
and I like to render lots of A objects like:
LABEL: TITLE
DATAGRID(Columns: B.Date, B.Name).
Can you make it possible?
Thanks,
enryb
The text was updated successfully, but these errors were encountered: