


I am using adobe livecycle es4 and I am trying to add a new record and then update it to an Access database. However, when i press update the error tells me that i cannot have Null values and it displays a check box field name. How can i allow a null value for a check box? Because when my form is used, not all of the check boxes will be checked
Views
Replies
Total Likes
I would like to know how to allow a check box to accept a NULL value (unchecked)?
Views
Replies
Total Likes
check the ResetData() function
Views
Replies
Sign in to like this content
Total Likes
Where would I find that?
Views
Replies
Total Likes
I am getting the error: "Non-nullable column cannot be updated to Null" for my check boxes when I click the "Update" button on my pdf form
Views
Replies
Total Likes
Make the checkbox state to On/Off/Neutral and try.
Not sure if this works but i think worth a try.
Views
Replies
Sign in to like this content
Total Likes
It's a function, look it up in the help file how you can use it on your checkboxes
Views
Replies
Sign in to like this content
Total Likes
Tried it, no go. Thank you though. Keep thinking
Views
Replies
Total Likes
Could not find it in help, found resetData() in the xml code but it was for the reset button
Views
Replies
Total Likes
It allows me to update the first time perfectly for the database, but it will not update any "addNew"s I try after the first one.
Views
Replies
Total Likes
You can use the resolveNode function that can catch the null value of your check box component.
Exemple:
if (this.resolveNode("NameCheckBox").rawValue == null)
{
//Do Something
}
Views
Replies
Sign in to like this content
Total Likes