mominsamir / smDateTimeRangePicker

Angular Material Date Picker, DateTime Picker, Date Range Picker, Date Time range picker
http://mominsamir.github.io/smDateTimeRangePicker/
MIT License
130 stars 50 forks source link

Is there a way to get the input Id ? of the datetime input #128

Closed pilouk closed 7 years ago

pilouk commented 7 years ago

Is there a way to get the input Id ? of the datetime input

oscar09 commented 7 years ago

If you have jquery loaded, you could do something like this:

$('sm-date-time-picker').find('input.sm-input-container').attr('id');

pilouk commented 7 years ago

@oscar09 thanks