The following function will attached the callback function to the JQuery datepicker control whenever the user choose a date from the popup:
function dt_attach_value_change_event(ctl_id, callback) {
$(ctl_id).datepicker("option", "onSelect", callback);
}
Friday, 24 October 2014
Subscribe to:
Comments (Atom)
We are moving
We are moving this blog to our new blog site: https://ciysys.com/blog/nodejs.htm
-
Overview Usually, we start developing a new system with designing database and then writing codes. If you are not a fan of ORM, you will h...
-
Below is the sample HTML which will hide the URL at the page header when printing with Javascript. <html moznomarginboxes > ...
-
You can draw a simple pie chart & doughnut chart with SVG + CSS. This is quite simple and straight forward. But the limitation is that i...