katemihalikova / ion-datetime-picker

Date and/or time picker for awesome Ionic framework
MIT License
169 stars 101 forks source link

Change title of popup #65

Closed p-rez closed 7 years ago

p-rez commented 7 years ago

Good day, i have a problem while trying to change the title of the datepicker, it doesn't work for me i'm afraid, i use "title" or "date-title" as said but nothing changes. Can someone show me the correct way of doing it?

I'll give you my example

< div class="date-pck item" ion-datetime-picker date data-title="qqq" ng-model="dateInitial">{{dateInitial| date: "yyyy-MM-dd"}}</ div>

And then i'll show the results

date

See? The title hasn't changed, if there's something i did wrong please help me.

katemihalikova commented 7 years ago

Hi, this attr gets an expression - title="'qqq'".

p-rez commented 7 years ago

Oh, thank you! I forgot to use the single quotes ''

< div class="date-pck item" ion-datetime-picker date title=" 'qqq' " ng-model="dateInitial">{{dateInitial| date: "yyyy-MM-dd"}}

That solved my problem, i'm so grateful, thanks! :)