Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VCST-1898: enable the calendar popup #213

Merged
merged 3 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading