I have two pages with the same issue. I am trying to save date and time in two separate spots. When I test if the data is being captured in the form via an Alert() or debug mode, I am seeing that the values pass through, but they are not being saved
In the form:
Java Script
In the script after the web page:
Here are the page variables:
Data Schema:
These variables have worked in the past but I am not sure what I have done to stop them from working.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
There are two points which you can check:
1) Value of variable ID, as you are doing insert or update operation, are you passing id value in your xtk.session.Write. If yes, then please check what is the value generated.
2) Typecast string variables to date and time data type.
Thanks.
Views
Replies
Total Likes
Hi @bryceh57660644 ,
Can you check in the javascript using logInfo(typeof <<variableName>>); what is the data type of the variables that are captured from the ctx.vars variables? Most probably the variables contactdate and contacttime in your javascript are of type String. You would need to typecast them before saving into your table.
Let me know if that helped?
Views
Replies
Total Likes
Hi,
There are two points which you can check:
1) Value of variable ID, as you are doing insert or update operation, are you passing id value in your xtk.session.Write. If yes, then please check what is the value generated.
2) Typecast string variables to date and time data type.
Thanks.
Views
Replies
Total Likes
Hi @bryceh57660644 ,
Check below in your script:
Here "v_id" would be IDs in your case as you are trying to save the values for a particular record and I believe it is missing currently , hence you are not able to see the value getting inserted/updated.
Hope this helps.
Thanks.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies