|
|
|
|
@ -25,8 +25,8 @@ export class TextInput extends UiElement {
|
|
|
|
|
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-label style='font-size: medium;' 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;
|
|
|
|
|
|