bs-datatable
Version:
A data table based on Bootstrap 5
18 lines (13 loc) • 453 B
text/typescript
import { BSInputOptions } from "../commonTypes/common-types";
import { BSDataTableInput } from "./BSDataTableInput";
class BSDataTableTextInputExt extends BSDataTableInput {
constructor(options: BSInputOptions) {
super(options);
this.options = options;
this.render();
}
render() {
this.element = document.getElementById(this.options.ElementId);
}
}
export { BSDataTableTextInputExt }