@tusharghoshbd/ngx-jquery-datatable
Version:
Angular datatable component using jquery
19 lines (18 loc) • 603 B
TypeScript
import { OnInit, ElementRef, SimpleChanges } from '@angular/core';
import "script-loader!jquery/dist/jquery.min.js";
import "script-loader!@tusharghoshbd/jq-plugins/Datatables/datatables.min.js";
export declare class NgxJqueryDatatableComponent implements OnInit {
private el;
options: any;
filter: any;
detailsFormat: any;
paginationLength: boolean;
columnsHide: boolean;
tableClass: string;
width: string;
_dataTable: any;
constructor(el: ElementRef);
ngOnChanges(changes: SimpleChanges): void;
ngOnInit(): void;
render(): void;
}