Constructor
new ImportDataPanel(opts)
- Since:
- v66
- Copyright:
- ParaSQL LLC 2022. All rights reserved.
- License:
Example
// typical usage
let opts = {
importIntoTable:'Customers',
importAction:'INSERT',
disabled: true,
columnMap: [
{sourceColName:'Customer_ID', targetColName:'Customer_ID'},
{sourceColName:'Name', targetColName:'Customer_Name'},
{sourceColName:'Address', targetColName:'Customer_Address'}
]
};
new parasql.ui.ImportDataPanel(opts).show();
Parameters:
Name | Type | Description | |||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
opts |
Object | Various import options. Properties
|
Extends
Methods
getContentDiv() → {HTMLElement}
- Inherited From:
Returns:
Returns this panel's content div.
- Type
- HTMLElement
hide()
Hides this ModalPanel.
- Description:
Hides this ModalPanel.
- Inherited From:
show()
Displays this ModalPanel.
- Description:
Displays this ModalPanel.
- Inherited From: