The angular-ui-datepicker tag has no usage guidance.
3
votes
1answer
380 views
How do I make an Angular UI Datepicker NOT Required
I have a form with many fields, including several datepickers (Angular UI Bootstrap).
<div name="mainForm" ng-form>
<div class="form-group">
<p class="input-group">
...
0
votes
1answer
23 views
How to enable all dates
I am using the angular ui datepicker widget from the angular ui bootstrap library (http://angular-ui.github.io/bootstrap/). By default, the datepicker only allows today or later dates to be enabled. ...
0
votes
1answer
39 views
Many AngularUI Datepicker making page performance low
I am working with AngularUI Datepicker.I have seprate partial views each having ng-repeat .There I am using AngularUI-Bootstrap-Datepickers and it is making page load really slow.
I followed this ...
0
votes
0answers
21 views
Angular ui-date - how to change language?
Is there any method or config method to set language for ui-datepicker in Angular? As far as I understand from jquery documentation about ui-datepicker it should be done like that:
...
0
votes
4answers
483 views
AngularJS date validation
How can I do date control validation in an AngularJS form for the following code ?
<label for="startDate" class="control-label">Start Date:</label>
<div class="">
<input ...
1
vote
4answers
440 views
Angular-UI date picker is in invalid state when specified the date format as 'd-M-yyyy' and ng-model with a string value as “2014-08-31T00:00:00Z”
I am getting a date time value from asp.net mvc controller as "2014-08-31T00:00:00Z". When I bind this value to my angular-ui datepicker control it's state is showing as ng-invalid ng-invalid-date.
I ...
3
votes
1answer
73 views
Angular erases invalid content from input inside directive
I have directive where I'm dynamically adding other directives and attributes:
app.directive('lrDatetime', function ($compile) {
return {
restrict: 'AE',
require: ["ngModel"],
scope: {
...
1
vote
1answer
88 views
How to change Angular UI Datepicker model value format in angular formly?
Here is the default format of UI Datepicker of angular formly
{
"date": "2015-10-05T18:30:00.000Z"
}
How to change the above format into
{
"date": "2015/10/05"
}
Here is the ...
1
vote
0answers
25 views
How do I use a custom month template with Angular UI Bootstrap Datepicker?
In the case of Angular Bootstrap UI Datepicker, I am unable to duplicate the technique for overriding Angular Bootstrap UI templates shown at this plunkr, which is cited at SO here.
Here is my ...
0
votes
0answers
58 views
Screen Reader NVDA 2015.2 reads the heading of AngularUI's datepicker twice
So I'm using an angular UI Datepicker: link to gitgub with NVDA screen reader (latest version).
The problem is related with table heading live region: when switching to another set of data (years, ...
2
votes
2answers
74 views
Detect the selected month in Angular UI bootstrap datepicker
I'm using the Angular UI Bootstrap datepicker in day mode for my project. How can I get the currently open month befoure the new date was selected?
0
votes
0answers
154 views
How to disable previous month button itself (not dates) in AngularUI date-picker control?
Want to disable/hide previous month button , when angularUI date-picker showing current month and enable/show previous month button, when angularUI date-picker not showing the current month or future ...
4
votes
1answer
82 views
angular ui bootstrap datepicker parsing not working properly
I am using angular-ui-bootstrap datepicker. When i try to change the date manually in input box as 1/1/2015 then the model value is undefined But when I enter as 01/01/2015 it works fine.
I want to ...
0
votes
1answer
91 views
Angularjs fullDate filter not working
I'm getting following error on using fullDate filter inside my html:
Error: [ngModel:nonassign] Expression 'publisherForm.dt |
date:'fullDate'' is non-assignable. Element:
Here is my jade ...
1
vote
2answers
242 views
AngularJS orderBy does not work when use date() format
OrderBy:'date' works fine, but unfortunately it does not order properly when add or edit the date()
<tr ng-repeat="expense in filteredlist = (expenses | filter:filterlist) | pagination: ...
0
votes
1answer
57 views
ngModel does not work for input[type=“date”] in Angular UI bootstrap
The angular ui bootstrap datepicker works fine with all functionality when use <input type="text" but unfortunately ng-model does not working for ng-click="editExpense(expense); when use <input ...
0
votes
1answer
85 views
List all saturdays and sundays
How should I achieve listing all saturdays and sundays between two dates into a listbox or textarea in Angular JS date picker on a button click and save them on another screen as Weekend under holiday ...
0
votes
0answers
51 views
Angular UI Datepicker validation
I have some validation issues with angular ui datepicker:
Due to javascript behaviour, non existing dates as '2015-02-30' are considered valid.
If I type manually 'aaaaa', the field is ng-valid. IMO ...
1
vote
1answer
212 views
Persist Angular UI Bootstrap Datepicker as string to API
I'm using angular-ui-datepicker popup and I'm trying to persist the saved date value as a string with the date only. M/d/yyyy
The input after date selection is correct 5/11/2015 but the value stored ...