Created
June 5, 2017 19:58
-
-
Save BenevidesLecontes/10f2dc4f8b492e4480b9be0d29f4d7eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="form-group"> | |
<label [attr.for]="id" [innerHtml]="label"></label> | |
<div class="input-group" daterangepicker (selected)="selected($event, mainInput)"> | |
<input [id]="id" [name]="id" | |
[placeholder]="placeholder" | |
[formControl]="control.get(itemName)" | |
class="form-control uneditable-input input-layout"/> | |
<a class="input-group-btn btn btn-icon btn-sm"> | |
<i class="glyphicon glyphicon-calendar"></i> | |
</a> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment