aasker Posted May 8, 2015 Report Share Posted May 8, 2015 I would like to store the Month and Year with a submission datapage. I used this logic..but it does not seem to work <SCRIPT LANGUAGE="JavaScript"> function calculate(){ var v_currentDate=new Date(); document.getElementById("InsertRecordMonth").value = v.currentDate.getMonth(); document.getElementById("InsertRecordYear").value = v.currentDate.getFullYear(); } /* On submitting the webform, the function calculate is executed */ document.getElementById("caspioform").onsubmit=calculate; </SCRIPT> Josephduby 1 Quote Link to comment Share on other sites More sharing options...
aam82 Posted May 8, 2015 Report Share Posted May 8, 2015 instead of new Date, I think you want to point to your date input field. Then you want to insert that into your other fields, but formatted differently. But I would suggest just using one date field, and then using that one field multiple times in the report, once formatted for just year, once formatted for just month. You might not need any js, and just 1 field. Quote Link to comment Share on other sites More sharing options...
aasker Posted May 8, 2015 Author Report Share Posted May 8, 2015 solved... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.