Data Grid Extension

Data Grid Extension (ODC)

Stable version 1.0.0 (Compatible with ODC)
Uploaded on 27 November 2023 by BK Planet Co., Ltd
Data Grid Extension

Data Grid Extension (ODC)

Documentation
1.0.0

Check the Dependency in your module:




Comments


1. CellEventOnGrid

  • You need to use the Action GetRowData of OutSystems Data Grid by its Event Parameters when you want to get the RowData
  • So if you want to add only Click Event, the Block OnCellClick of OutSystems Data Grid is the best
  • But it returns Grid Column Index and Grid Cell Data of a cell where Event happened
  • And it allows you to add Double-Click or Keyboard Event besides Click


2. AllowEditableByCellData

  • It won't work when the Property AllowEdit of the Widget GridColumn is False, like the editor doesn't open when the AllowEdit of the Widget Grid is False although GridColumn's AllowEdit is True


3. GetFocusedRowsData

  • It can also return data of rows that you selected for the Action GetSelectedRowsData
  • But for the Action GetCheckedRowsData, when rows was selected by Checkboxes, it can't return


4. RemoveCheckedRows

  • It requires the RowCheckbox of the Property RowHeader of the Widget Grid


5. SelectGridCell

  • The last row's cell is selected when the Parameter GridRowIndex is greater than the length of Grid Row
  • But for the Parameter GridColIndex, the selection border will be missing