ngx-admin/src/app/pages/tables/components/hotTables/handsontable-section.ts

49 lines
1.7 KiB
TypeScript

import { Component } from '@angular/core';
@Component({
selector: 'handsontable-section',
template: `
<div class="widgets">
<div class="row">
<div class="col-md-12">
<ba-card cardTitle="Examples">
<section id="handsontable">
<div class="row">
<div class="col-md-12">
<basic-demo></basic-demo>
<br>
<br>
<advanced-demo></advanced-demo>
<br>
<br>
<finance-demo></finance-demo>
<br>
<science-demo></science-demo>
<br>
<br>
<sheet-demo></sheet-demo>
<br>
<br>
<sport-demo></sport-demo>
</div>
</div>
</section>
</ba-card>
</div>
</div>
</div>
`
})
export class HandsontableSectionComponent {
currentHeading:string = 'Basic';
select(e) {
if (e.heading) {
this.currentHeading = e.heading;
}
}
}
function escape(text: string): string {
return text.replace(/{/g, '&#123;').replace(/}/g, '&#125;');
}