Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TMS IntraWeb Component Pack Pro
Using a detailgrid in TIWAdvWebGrid

Make sure that one column has a DetailSpan value set higher than 0. This is the column from where you want to see the detail grid, typically the first column. The DetailSpan value controls in how many columns you see the detail grid. Set DetailRowShow to dsServerOneOpen. Use the ctNode ColumnType to display a node in the cell to show/hide the TTIWAdvDetailWebGrid.

Example:
  TIWAdvWebGrid1.DetailGrid := TIWAdvDetailWebGrid1;
  TIWAdvWebGrid1.DetailRowShow := dsServerOneOpen;
  TIWAdvWebGrid1.Columns[0].ColumnType := ctNode;
  TIWAdvWebGrid1.Columns[0].DetailSpan := 3;