Hai Team
I am working on Textbox in my page in Angular4 and i cannot increase the width of the textbox. I need your immediate support regarding this issue.Please provide a solution ASAP.
Here i attach my html page please find it.
HTML Page
<div class="row">
<div class="col-lg-12 mfg-top div-marleft">
<div class="row">
<div class="col-lg-3 col-md-3">
<label class="label_size">Incident Type<span class="red">*</span></label>
</div>
<div class="col-lg-3">
<input type="text" [(ngModel)]='safetyenvinstance.incidentTypeID' name="incidenttype" id="ddpincidenttype" #nameIncidentType="ngModel" ej-dropdownlist [dataSource]="safetytypeValues" [fields]="safetytypefieldsvalues" watermarkText="Select a Incident Type" required autocomplete="off">
<span *ngIf="nameIncidentType?.touched && !nameIncidentType.valid" class="validationmessage" style="color:red">
Incident Type is Required!
</span>
</div>
</div>
</div>
</div>
Regards
Sridhar