Skip to content

Commit

Permalink
enable the calendar popup
Browse files Browse the repository at this point in the history
  • Loading branch information
basilkot committed Oct 7, 2024
1 parent 2791d07 commit 3a8a68c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@
<!-- Date Cell Write -->
<script type="text/ng-template" id="date-cellTextEditor">
<div class="form-editor form-input __calendar">
<input type="text" class="form-input" date ng-model="MODEL_COL_FIELD" datepicker-popup="short" datepicker-popup-dropless="true" is-open="grid.appScope.datepickers[col.colDef.name]">
<input type="text" class="form-input" date ng-model="MODEL_COL_FIELD" placeholder="yyyy-mm-ddThh:mm:ss" datepicker-popup is-open="grid.appScope.datepickers[col.colDef.name]">
<button class="btn" type="button" ng-click="grid.appScope.open($event, col.colDef.name)">
<i class="btn-ico fa fa-calendar"></i>
</button>
</div>
</script>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@
</script>
<script type="text/ng-template" id="date-cellTextEditor">
<div class="form-editor form-input __calendar">
<input type="text" class="form-input" date ng-model="MODEL_COL_FIELD" datepicker-popup="short" datepicker-popup-dropless="true" is-open="grid.appScope.datepickers[col.colDef.name]">
<input type="text" class="form-input" date ng-model="MODEL_COL_FIELD" placeholder="yyyy-mm-ddThh:mm:ss" datepicker-popup is-open="grid.appScope.datepickers[col.colDef.name]">
<button class="btn" type="button" ng-click="grid.appScope.open($event, col.colDef.name)">
<i class="btn-ico fa fa-calendar"></i>
</button>
</div>
</script>
<script type="text/ng-template" id="list.row.html">
Expand Down

0 comments on commit 3a8a68c

Please sign in to comment.