Hola,
Trying to do some client side manipulation of the selecteddate value of a datepicker here.
Looks like I should be able to use:
Code: JavaScript
var begDate = dpBeg.getSelectedDate;
var endDate = begDate.add('h',6);
dpEnd.setSelectedDate = endDate;
(Note that I'm using the javascripttoolbox.com kit for date manipulation)
Instead of getting a date object back from getSelectedDate, it looks like I'm getting a function (!?). Here is what is returned:
function (){if(this.aaov)return this.aaow();else{this.aaox();var a=this.aani.aank();if(!a&&this.aaoy()){var b=this.aaoz();if(b.aapa||b.aapb||b.aapc){a=EO825.f.aph(1,0,1);a.setHours(b.aapa,b.aapb,b.aapc);}}return a;}}
Am I using this thing wrong?
Using VS2010, .net 4, EO2010.
Thanks!