Questions tagged [angular-ui-datepicker]

Use for questions about the datepicker and datepicker popup directives of the Angular UI Bootstrap library.

Resources:

53 questions
1
vote
1 answer

How to prevent make same period of time with moment

The purpose of application is for making event on the day which works very well. At the same the user can make event there is event already exist on the same period of time. Is there any quick option to prevent making event on the same time if it…
Mo.
  • 26,306
  • 36
  • 159
  • 225
1
vote
2 answers

Angular UI datepicker validated as false when empty

I'm using the JqueryUI datepicker(1.0.0) directive with Angular 1.4.9 to display a date of birth. This field is not required and should not be validated unless it's filled. Once the page loads, the field is validated as true(As expected). And once…
nipuna-g
  • 6,252
  • 3
  • 31
  • 48
1
vote
2 answers

Extend Angular-UI Datepicker directive

I have been using the ui-datepicker from Angular-ui-bootstrap a lot, but every time I use it, I need to set it up, the same way I do every time. So I was wondering if I could create a directive called custom-datepicker I could use like…
1
vote
0 answers

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…
gallygator
  • 377
  • 1
  • 4
  • 16
1
vote
0 answers

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, months, days), the heading is being read twice…
1
vote
2 answers

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() Demo:…
Mo.
  • 26,306
  • 36
  • 159
  • 225
1
vote
1 answer

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 is a Date Mon May 11 2015 00:00:00 GMT-0400…
0
votes
0 answers

The datepicker is hidden when table data is less inside tabs

There is a datepicker inside tabe. When I open datapicker it will work correctly when the table data is more but if I remove table data it hiding inside..adding both screen .(Angular project) Datepicker when table data is more Datepicker when table…
0
votes
0 answers

How to set (or remove) timezone for AngularJs UI mix with jQuery Datepicker

I have a input type Date, because my Project user Spring MVC + AngularJs, so i used Datepicker of AngularUI, but when value send into Request, timezone always auto minus 7 hours, i looking for all solution but not found anwser, please help me! This…
0
votes
0 answers

AngularJS Controller resetting $scope variables after setting

I am trying to implement a simple datepicker using the akveo AngularJS project. When I change my date,I am setting a $scope variable from on-change function. When I debug, I can see that the correct picked value is being passed and…
0
votes
1 answer

uigrid is catching keyboard key events

Using AngularJs 1.x, I have a datepicker which should pick today when you press t. And I have ng-typeahead which should scroll down the options when keydown is pressed. They both work fine when placed outside the ui-grid but when they are inside a…
Lynob
  • 5,059
  • 15
  • 64
  • 114
0
votes
1 answer

$parse Syntax Error when binding Angular Expression to Directive Attribute

Can't bind attributes on template using directive I can't seem to bind attributes on the templates using directives. Any help or suggestion would be great! It is giving me this error: [$parse:syntax] Syntax Error: Token '{' invalid key at column 2…
0
votes
1 answer

conditional min and max date in uib-datepicker

I want to add an uib-datepicker in an ng-repeat. Each item has it own min and maxdate, so I want to conditional set this to the datepicker. Currently I have this, but it isn't working:

NVO
  • 2,566
  • 5
  • 27
  • 57
0
votes
2 answers

How to diable previous dates in angular-io-datepicker

I dont know much about the angular 4, can any tell me how to diable previous dates in angular-io-datepicker.
0
votes
1 answer

How to set input field validation in reusable custom directive?

I'm trying to make a reusable custom directive that will validate date in input field. Code provided below is working, however is not reusable at all which is my biggest concern. What I was trying to do, was to set a new scope in directive however…