zumero / DataGrid

A Xamarin.Forms control for displaying data in rows and columns.
Apache License 2.0
20 stars 19 forks source link

Windows Platfom Progress #6

Open ravensorb opened 8 years ago

ravensorb commented 8 years ago

Is there enough implemented in the Windows Platform for this to be usable?

jeremysheeley commented 8 years ago

Yes, Windows is usable. One caveat is that there is an issue with Xamarin.Forms 2.0.0 that will cause errors on Windows platforms. You can follow the progress of that fix at:

https://bugzilla.xamarin.com/show_bug.cgi?id=36328

jeremysheeley commented 8 years ago

Also, to see source for a windows project using DataGrid, you can download the Zumero for SQL Server Test App at http://zumero.com/dev-center/zss/

ravensorb commented 8 years ago

Excellent. One other question, is there a way to bind the "columns" to a collection? I am looking for something that has most of the functionality of a data grid that has 1 row and scrolls horizontally.

ravensorb commented 8 years ago

Cool thanks

jeremysheeley commented 8 years ago

It's not a thing that we've tried, but it should be possible. You may end up with memory issues if you're using lots of column headers, as they have a different lifecycle than grid cells.

balaameex commented 8 years ago

Is it support for nested Grid view? In one of my project has the requirement of nested gridview. I tried with default List view control it is not working with Android and crashes the app.while scrolling. So that I want to confirm It will work for Nested Grid View.

ericsink commented 8 years ago

@balaameex In general, I suspect that anytime you nest a scrolling thing inside another scrolling thing, it will not work well. I don't know exactly what will happen if you try to nest DataGrids, but I don't think it will work.