Package Exports
- cb-test-angular-adapter
- cb-test-angular-adapter/bundles/csvbox-angular.umd.js
- cb-test-angular-adapter/fesm5/csvbox-angular.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cb-test-angular-adapter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@csvbox/angular
Angular adapter for csvbox.io
Shell
npm install @csvbox/angularImport
Add CSVBoxAngularModule to your module imports
import { CSVBoxAngularModule } from "@csvbox/angular";
@NgModule({
...
imports: [
...
CSVBoxAngularModule
]
})Usage
<csvbox-button [licenseKey]="licenseKey" [onImport]="onData.bind(this)" [user]="user">Import</csvbox-button>Example
import { CSVBoxMethods } from "@csvbox/angular"
@Component({
selector: 'app-root',
template: `
<csvbox-button
[licenseKey]="licenseKey"
[user]="user"
[onImport]="onData.bind(this)">
Import
</csvbox-button>
`
})
export class AppComponent implements CSVBoxMethods {
title = 'example';
licenseKey = 'YOUR_LICENSE_KEY_HERE';
user = { user_id: 'default123' };
onData(result: boolean, data: any) {
if(result) {
console.log("Sheet uploaded successfully");
console.log(data.row_success + " rows uploaded");
}else{
console.log("There was some problem uploading the sheet");
}
}
}Readme
For usage see the guide here - https://help.csvbox.io/getting-started#2-install-code
License
MIT © csvbox-io