You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -96,10 +96,10 @@ datepicker-show="" | String | false | Trigger the datepicker visibility, if true
96
96
| | | **tip:**_You may use this option together with datepicker-toggle="false" for a stable behavior_
97
97
datepicker-mobile="" | String | true | Set to `false` to force override of mobile styles. Especially useful for using desktop-style pagination control in mobile apps.
98
98
99
-
##Options
99
+
##Options
100
100
Angular datepicker allows you to use some options via `attribute` data
101
101
102
-
####Custom titles
102
+
####Custom titles
103
103
104
104
You can set the titles for the month and year selectors with the **date-year-title=""** and **date-month-title=""** data attributes (default to is _"select month"_ and _"select year"_)
105
105
@@ -113,7 +113,7 @@ You can set the titles for the month and year selectors with the **date-year-tit
113
113
</datepicker>
114
114
```
115
115
116
-
####Highlight today day in calendar
116
+
####Highlight today day in calendar
117
117
To highlight or style the today day in the calendar just use its own CSS class (`._720kb-datepicker-today`) like this:
118
118
119
119
```css
@@ -123,7 +123,7 @@ To highlight or style the today day in the calendar just use its own CSS class (
123
123
}
124
124
```
125
125
126
-
####Custom buttons
126
+
####Custom buttons
127
127
You can customize the calendar navigation buttons content, let's make an example while using [FontAwesome](http://fontawesome.io)
128
128
129
129
```html
@@ -132,7 +132,7 @@ You can customize the calendar navigation buttons content, let's make an example
132
132
</datepicker>
133
133
```
134
134
135
-
####Custom buttons titles for arrows
135
+
####Custom buttons titles for arrows
136
136
You can also set the titles for the left and right arrows with **button-next-title=""** for the right and **button-prev-title=""** for the left. By default they are labeled _"next"_ and _"prev"_.
137
137
138
138
```html
@@ -145,7 +145,7 @@ You can also set the titles for the left and right arrows with **button-next-tit
145
145
</datepicker>
146
146
```
147
147
148
-
####Input as grandchild
148
+
####Input as grandchild
149
149
Sometimes you cannot put date input as a first child of datepicker. In this case you may use `selector=""` to point to the CSS class of the input. Below example with using Twitter Bootstrap and FontAwesome
150
150
151
151
```html
@@ -158,7 +158,7 @@ Sometimes you cannot put date input as a first child of datepicker. In this case
158
158
</div>
159
159
</datepicker>
160
160
```
161
-
####Manually show and hide datepicker
161
+
####Manually show and hide datepicker
162
162
Sometimes you want to (manually/programmatically) show or hide the datepicker, this can be achieved using `datepicker-show` attribute, if `false`, datepicker is hidden, if `true`, datepicker is shown
163
163
164
164
```javascript
@@ -191,9 +191,9 @@ Sometimes you cannot put date input as a first child of datepicker. In this case
191
191
</div>
192
192
</datepicker>
193
193
```
194
-
###Tips
194
+
###Tips
195
195
196
-
####Date validation
196
+
####Date validation
197
197
If you want to validate the input, while user is typing for example, you just have to refer to the `ngModel`.
0 commit comments