Function
This is the constructor
This fucntion initialize the date object values
var date1 = new dojox.date.buddhist.Date(); var date2 = new dojox.date.buddhist.Date(date1); var date3 = new dojox.date.buddhist.Date(2552,2,12);
Function
This function returns the date value (0 - 30)
var date1 = new dojox.date.buddhist.Date(); console.log(date1.getDate());
Function
This function return the month value ( 0 - 11 )
var date1 = new dojox.date.buddhist.Date(); console.log(date1.getMonth()+1);
Function
This function return the Year value
var date1 = new dojox.date.buddhist.Date(); console.log(date1.getFullYear());
Function
returns the Hour value
Function
returns the Minuites value
Function
returns the seconde value
Function
returns the Milliseconds value
Function
This function sets the Date
var date1 = new dojox.date.buddhist.Date(); date1.setDate(2);
Function
This function set Year
var date1 = new dojox.date.buddhist.Date(); date1.setFullYear(2552); date1.setFullYear(2552, 1, 1);
Function
This function set Month
var date1 = new dojox.date.buddhist.Date(); date1.setMonth(0); //first month
Function
set the Hours 0-23
Function
set the Minutes frm 0-59
Function
set the Seconds from 0-59
Function
set the milliseconds
Function
This returns a string representation of the date in "dd, MM, YYYY HH:MM:SS" format
String
Function
Function
This function sets this Date to the Hebrew Date corresponding to the Gregorian Date
Function
This returns the equivalent Gregorian date value as a Date object
Date
Function
This function return Week Day value ( 0 - 6 )
int
Function
Object
Object
Object