- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2022 11:33 AM
There is a button on my form, and if I click that I want to set one of my field's value to "false".
I made this short code, but it doesn't work
current.active="false";
current.update();
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2022 11:36 AM
Hey,
Please let me knwo on which table are you trying to do this and second thing please try below code if its a check box field
current.active=false; //assign boolean value instead of string
current.update();
Please mark my answer helpful if it helps you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2022 11:36 AM
Hey,
Please let me knwo on which table are you trying to do this and second thing please try below code if its a check box field
current.active=false; //assign boolean value instead of string
current.update();
Please mark my answer helpful if it helps you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2022 03:44 AM
Hello
Hope you are doing good
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2022 07:03 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2022 07:06 AM