You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm_moe/Mohem/src/app/uI-elements/text.input.ts

35 lines
1.3 KiB
TypeScript

import { UiElement } from "./ui-element";
export class TextInput extends UiElement {
constructor(
private label: string,
private elementId: string,
private value: any,
private containerId: string,
private textVal: string,
private disabled: string,
private hidden: string,
private required: string) {
super(elementId, containerId, '');
this.createElement(this.getTemplate());
}
public getTemplate() {
let requiredClass: string = "";
if (this.required === 'Y')
requiredClass = "requiredClass"
if (this.disabled === "N") { this.disabled = "disabled" } else { this.disabled = "" }
if (this.hidden === "N") { this.hidden = "display:none;" } else { this.hidden = "" }
const template =
// "<div class='custom-text-area-element' style='" + this.hidden + "'>" +
"<ion-item style='" + this.hidden + "'>" +
" <ion-label class='" + requiredClass + "'>" + this.label + "</ion-label>" +
" <ion-input type='Text' data-colm-text='" + this.textVal + "' id='" + this.elementId + "' value='" + this.value + "' " + this.disabled + "> </ion-input>" +
"</ion-item> ";
return template;
}
}