📄️ Changing the DataGrid Column Caption
📄️ Datagrid Column Required Field Control
You can perform the Datagrid Column Required Field Control on the Client(ts) side in the Datagrid OnRowInserting event. Example usage is as follows.
📄️ Datagrid Column Sum
You can print the column total to the numberbox with the following code passed in the OnSummaryChanged event on the client(ts) side of the DataGrid.
📄️ DataGrid DateTime Column Control
When selecting over a column of type DateTime, create a warning based on the specified condition.
📄️ Add Rows to DataGrid with Code (Client/TS)
Rows can be added to the DataGrid by using the following code.
📄️ Assign a value to a cell with the SetCellValue event in the datagrid
''' //Datagrid object was checked with the SetCellValue event in which column was processed and whether the value was filled.
📄️ Datagrid Row Control
You can perform the Datagrid Row Control on the Client(ts) side in the Form OnBeforeSave event. Example usage is as follows.
📄️ DataGrid Row Deletion
📄️ DataGrid Date-Based Sorting
📄️ Assign Values with TypeScript at the Time of New Row Creation in DataGrid
This documentation is a guide to the process of assigning values using TypeScript when a new row is created on a DataGrid component.
📄️ Updating the Transaction Record on the DataGrid on the DB Side
DATASOURCE/test side:
📄️ Prevent duplicate value from being added to the DataGrid
We compare the TEXTVAL value that is attempted to be inserted in the OnRowInserting event of the DataGrid with the other TEXTVAL values in the DataGrid and prevent the new row from being inserted if the same value is found.
📄️ Print the list of returned values from the DataSource to the DataGrid
Below is the code information that we transferred the information returned from a Datasource that we have added to DataGride via the Button.
📄️ i̇ki_datagrid_uzerinden_ayni_anda_veri_silme
In line with the needs, the data deleted from one DataGrid will also be deleted from the other DataGrid with the code we write for the simultaneous deletion of data from two DataGrids in a Form.