TWebTableControl HTML cell content like with OnGetCellChildren

Hi

Is there a possibility with TWebTableControl to add row and to personalize HTML cell content like it's possible using event TWebTableControl ?
I would like to use Table to present several lines with interactive WebControl (TWebEdit, TWebRadioButton, TWebButton...) by creating one by one TWebControl (needed to assign some properties and specific method)

Thanks

This code inserts a button into a specific cell

var
  btn: TWebButton;
begin
    btn := TWebButton.Create(Self);
    btn.Caption := 'test';
    btn.ParentElement := WebTableControl1.CellElements[2,2];
end;

Thanks Bruno
Working fine

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.