looking for a product for creating advanced grid

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

Hello!!

We are using .NET C# so the product must use this language.

The existing controls within .NET is not good enough so I'm looking
and evaluating other products.

We need a product to use when we create our advanced grid.
We use .NET win forms with C#

One important requirement on our grid is that you should be able to
set a cell to a arbitrary type. You should be able to set a cell as
type combobox containing checkboxes.
Or set one cell as combobox only. Or you should be able to set a cell
as a numeric.
Or you should be able to set a cell as a string.

Note that if you set a cell at location row 2 col 2 as type combobox
with checkboxes then you should be able to set cell at location row 3
col 2 as a numeric type. So when you specify a cells to be of a certain
type you do this per cell and not to the entire colomn.

Have you any good product that you can recommend that fulfil our
requirement.
You should also at runtime be able to delete a row or add a row.

//Tony
 
I'm pretty sure the Grid shipped with .NET does what you want to do. Search
the web for examples on how to do this.

There are tons of custom Datagrids out there, but they are not free. Google
".NET Datagrid" and some will come up.

Mark.
 
I use the Syncfusion GridControl. It's exceptionally flexible and you can do
just about anything with it.

You can create custom cell types by creating GridCellModel and
GridCellRenderer derived classes.

You can get source code (for extra $$$).

It's an absolutely excellent grid, in my opinion.

On the negative side, it's very complex and not always easy to use,
particularly if you really push it. I think this is necessary side effect of
its incredibly flexibility.

It's not cheap, but there's no royalty license and you definitely get your
money's worth.

Their tech support is excellent as well.

You can download a demo from their web site: http://www.syncfusion.com/

I've been working with it for about 3 years or so and on an almost daily
basis for about a year and a half (our product has a highly customized grid
derived from the Syncfusion grid). For the requirements that we have, our
two options were Syncfusion's grid, or write one from scratch. Nothing else
would have been able to do all the things we needed.

Pete
 
Tony Johansson said:
Hello!!

We are using .NET C# so the product must use this language.

The existing controls within .NET is not good enough so I'm looking
and evaluating other products.

We need a product to use when we create our advanced grid.
We use .NET win forms with C#

One important requirement on our grid is that you should be able to
set a cell to a arbitrary type. You should be able to set a cell as
type combobox containing checkboxes.
Or set one cell as combobox only. Or you should be able to set a cell
as a numeric.
Or you should be able to set a cell as a string.

Note that if you set a cell at location row 2 col 2 as type combobox
with checkboxes then you should be able to set cell at location row 3
col 2 as a numeric type. So when you specify a cells to be of a certain
type you do this per cell and not to the entire colomn.

Have you any good product that you can recommend that fulfil our
requirement.
You should also at runtime be able to delete a row or add a row.

//Tony

I would recommend FarPoint Spread (www.fpoint.com) which is an excellent
unbound grid and allows you to set the data type at the cell level.

SP

SP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top