question about DataGrid in web applications

  • Thread starter Thread starter John Katsaridas
  • Start date Start date
J

John Katsaridas

I have an old software system that is written in COBOL, and I am
trying
to re-engineer it to a web application on the .NET platform with C#.

I want to include a DataGrid in the user interface and I would like to
know if it is possible to dynamically adjust the boundaries of the
cells in a DataGrid at run-time, in a web application. I know it is
possible to be done in a windows application, but I have so far been
unable to find out how to do this in a web application.

Also, is it possible to get the x,y (column, row) cell ID for the
cells in a DataGrid in a web application?

Could anyone please let me know if this is feasible?.
I would greatly appreciate it.
Jkatsaridas
 
Thus spake John Katsaridas:
I want to include a DataGrid in the user interface and I would like to
know if it is possible to dynamically adjust the boundaries of the
cells in a DataGrid at run-time, in a web application. I know it is
possible to be done in a windows application, but I have so far been
unable to find out how to do this in a web application.

You mean like being able to drag the column borders? No, you can't do
that with a DataGrid. You'd need some sort of ActiveX or Java component
for that type of user interaction.
Also, is it possible to get the x,y (column, row) cell ID for the
cells in a DataGrid in a web application?

What exactly are you trying to do? Most likely there's an event that
will hand you the current cell.
 
Back
Top