Data Browser - Viewing Site  Sector 23 Code Bank Logged in as:  Guest  




           


Angular ui-date respond to date change
If you have a ui-date set on a div, you can create an onSelect event to handle the date change.

HTML:


Controller:

$scope.dateOptions =
{
changeYear: true,
changeMonth: true,
onSelect: function (dt) {
alert(dt);
}
};

Created By: amos 8/31/2015 2:35:23 PM