Sunday, June 16, 2013

Sunday


आज जून महीने  की  १६ तारीख है | रविवार का दिन है और पुरे दिन बारिश होती रही | 

Thursday, June 13, 2013

Disable past date in jQuery datepicker

Change at line no at 8.
1.    onSelect:function ( selectedDate ) {
2.   var option = this.id == "startDate" ? "minDate" : "maxDate",
3.   instance = $(this ).data( "datepicker" ),
4.   date = $.datepicker.parseDate(
5.   instance.settings.dateFormat ||
6.   $.datepicker._defaults.dateFormat,
7.   selectedDate, instance.settings );
8.   date.setYear(date.getYear()+1);
9.   dates.not( this ).datetimepicker( "option", option, date );

Monday, May 27, 2013

Tuesday, May 7, 2013

Comment

आज कल इस देश में क्या हो रहा है .

Monday, May 6, 2013

Important Link

http://struts.apache.org/2.2.1/struts2-plugins/struts2-dojo-plugin/apidocs/org/apache/struts2/dojo/components/Autocompleter

http://www.precisejava.com/javaperf/j2ee/JDBC.htm

Document compatibility Check:
Use this line in all page.


<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8">

Converting exponential value in java to a number format

You can convert easily with the following methods:>
Double.valueOf("9.78313E+2").longValue() or
BigDecimal bd = new BigDecimal("9.78313E+2");
long val = bd.longValue();
Assuming that the given number is in a String form.