Table Inputs
An extra function a Table can provide is the ability to edit data on cell inputs like a spreadsheet. The developer can decide which column or columns will be used for data entry by setting the properties of the silk:Column : inputType, inputMask, valueColumn, labelColumn, and visibleColumn, depending on the processing needs.
Setting the inputs
The example below shows a table with a column set to edit the DataProvider's income value with inputType as "decimal(2)." If the inputType is not provided, the type "text"" is used.
Setting the mask
By default the input mask is selected from the inputType. A mask can be provided for special circunstances.
Activate Inputs
The method setInputs reloads the table and add inputs to the configured columns.
Calling the method again will remove the inputs and reload the table. If a parameter "true" is added it will activates the inputs and "false" will remove.
Get inputs value
The method getInputs returns the input values into an array to be evaluated.
The returned array contains a list of objects with a property for each input column. The properties are named using the valueColumn defining the input. Each property contains the input's properties.
Processing inputs values
The example below processes an input array and submits the data to the database.
Input's properties from the DataProvider
Inputs properties can be defined by values in the DataProvider. This requires to configure the Select query to return the values defining the inputs. The properties to use are inputType, inputMask, and visibleColumn.
A select query for this case could be:
For this case the column's configuration woud be:
Input's properties set programatically
If required to address very complex needs, the event renderInput allows the definition of the input's setup programmatically. The event has the parameters column index, the DataProvider index, and the DataPravider Item being evaluated.
If the event returns true or undefined, the input for the particular row will be rendered. If the event returns false, then the input will not be rendered.
The event could also return the input's type. If required, the mask can also be added to the input's type after a pipe "|" symbol.
Store extra data for post prosessing
In some situations, an input may need extra data for post-processing. This data can be collected and stored when the input is generated, and later, this information can be used to decide how to process the data correctly.
A sample case is when the data is to be edited in table inputs belonging to a related join table. In this case, the main table rows may have related records in the join table or not. At editing time, the record with no companion data must operate an "insert." A row with already existing companion records will operate an "update." If the input empties, the companion records will be "deleted." A case like this may require more data for proper processing.
For cases like this, the event dataInput allows extra data to be pushed into the input. The event has the parameters DataProvider index, DataProvider Item, and the input type. It is expected to return an object stored in the input and available during processing in the "item" property.
A simple dataInput event example.
The method getInputs will include the extra data in the item property to select the proper process.
Last updated