Below is the detailed overview of the activites provided in the package:
Input : DataTable, Row Number
Output : DataTable with first N row specified by the user
Note: Row Number starts with 1.
Input : DataTable, Row Number
Output : DataTable with last N row specified by the user
Note: Row Number starts with 1.
Input : DataTable, Starting Row Number, Ending Row Number (Optional)
Output : DataTable with rows starting and ending as specified by the user. If the ending row number is not specified it will take until the last row of the given DataTable.
Note: Row Number starts with 0.
4. Select Particular columns
Input : DataTable, column names (array(string))
Output : DataTable with columns only specified by the user
5. Remove Particular columns
Input : DataTable, column names (array(string))
Output : DataTable with columns not specified by the user
Input : DataTable, column name, Search value
Optional : SearchFrom (Top or Bottom), Search Instance (Instance of the row to be searched ex: 1,2,3etc..)
Input : DataTable (Required)
Header Styles Provided : Header Font Family, color, size, style and header background color.
Border Styles Provided : Border color, border size and border style, checkbox to select and unselect border style options.
Body Styles : Font Family, Font Size and Font Color.
Alternate Row Styles Provided : Alternate Row color and checkbox to select and unselect alternate row style options.
Output : Html table Tag (String).
Output : List containing column headers and array containing column headers
Output : DataTable with Serial number column added as the first column.(auto increment)
Input : DataTable, column name, Opeartion(DropDown)
Operations Provided : SUM, MAX, MIN, AVERAGE
Output : Result of the Operation selected by the user on the particular column.
Note: The column datatype should be numeric.
Input : DataTable, column Index, New Column name
Output : DataTable with column name changed specified by the user.
Note: Column Number starts with 0.
Input : DataTable, column Name,New Column number
Output : DataTable with column position changed specified by the user.
Note: Column Number starts with 0.
Output : Reversed DataTable (Bottom to Top).