Workbench is use to view the server Databae on our Local PC There are binary distributions of MySQL Workbench available for several variants of Linux, including Fedora, Oracle Linux, and Ubuntu To install Workbench go to terminal and type(ctrl + alt + T) 1. sudo add-apt-repository ppa:olivier-berten/misc ITs better...
Articles from March 10, 2015
How to validate and disable (start & end) dates less than start date (datepicker)
In some case we want start date should be less than end date, and to disable renaming date HTML Script $(document).ready(function(){ $(“#txtFromDate”).datepicker({ numberOfMonths: 1, onSelect: function(selected) { $(“#txtToDate”).datepicker(“option”,”minDate”, selected) } }); $(“#txtToDate”).datepicker({ numberOfMonths: 1, onSelect: function(selected) { $(“#txtFromDate”).datepicker(“option”,”maxDate”, selected) } }); });