Page 1 of 1

Entering text into a table Cell

Posted: Fri Aug 07, 2009 12:28 pm
by ConvertFromOldNGs
by Anonymous >> Tue, 18 Nov 2003 11:35:35 GMT

How can i allow the user to select a cell within a table and directly enter text into the cell?

Re: Entering text into a table Cell

Posted: Fri Aug 07, 2009 12:28 pm
by ConvertFromOldNGs
by Kevin >> Tue, 18 Nov 2003 20:24:49 GMT

Try this

vars
cell : JadeTableCell;
begin
//
// Allow text to be entered into cell (2,2)
// Where tbl_A is of type Table
//
cell := tbl_A.accessCell(2, 2);
cell.inputType := Table.InputType_TextBox;