Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
User Experience
Lawson Design Studio
Inactivate Add Button on Form
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Kezia West
Past 24 Hours:
1
Prev. 24 Hours:
0
Overall:
5246
People Online:
Visitors:
415
Members:
1
Total:
416
Online Now:
K Pacheco
New Topics
Infor CloudSuite
How to build a Pre-Prod tenant
2/7/2025 1:28 AM
After we finished our implementation and ended our
Lawson S3 Procurement
Browser issue with RQC Shopping
1/28/2025 5:49 PM
Since the recent Chrome/Edge updates, our RQC shop
Lawson S3 Procurement
S3-Procurement New Company
1/22/2025 10:38 PM
My Accounting Department has created a new Company
S3 Customization/Development
JUSTIFIED RIGHT
1/15/2025 7:41 PM
Is there a way in Lawson COBOL to make a character
S3 Systems Administration
ADFS certificate - new cert
12/3/2024 9:38 PM
The certificates on the windows boxes expired and
Lawson S3 HR/Payroll/Benefits
Post Tax Benefit Plan Table
11/14/2024 9:16 PM
Hi, totally new to Laswon. I have a repor
Lawson S3 Procurement
ED501 Error: Map 850 not supported by /law/c15vda/lawson/test10/edi/bin/laws_out_91
11/12/2024 3:47 PM
Tried runnning ED501 and getting the atathced erro
Lawson S3 HR/Payroll/Benefits
Error
11/6/2024 9:54 PM
When I try to enroll a retiree in 72.1 health plan
Infor ERP (Syteline)
Syteline: New Data Maintenance Wizard (Error) Need help
11/1/2024 4:24 PM
Hi, I need help with an error on syteline while us
Dealing with Lawson / Infor
Implementing Lawson v10 with Cerner Surginet, Case Cart Picking, and Quick Adds for the OR
10/29/2024 4:20 PM
Hi Everyone, I am wondering if there is any org
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
JonA
3291
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1375
Roger French
1315
mark.cook
1244
Forums
Filtered Topics
Unanswered
Unresolved
Announcements
Active Topics
Most Liked
Most Replies
Search Forums
Search
Advanced Search
Topics
Posts
Prev
Next
Forums
User Experience
Lawson Design Studio
Inactivate Add Button on Form
Please
login
to post a reply.
6 Replies
0
Subscribed to this topic
12 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Chris12
Veteran Member
Posts: 150
1/6/2014 3:13 PM
I am trying to figure out the best way to inactivate the "add" button when the form loads if there are any values on a certain text box ..... Any help is greatly appreciated .... Thanks, Chris
Robert Spurr
Veteran Member
Posts: 130
1/6/2014 8:29 PM
Split
If you plan on bouncing between active and inactive, the simplest way is to interrogate the action taken against your criteria for allowing the action to be performed. In this case if fc == "A" and ......what ever follows either perform the add or return false. Another option is to remove all the form buttons and replace them with button objects and hidden or make visible as needed although this is probably overkill.
Chris12
Veteran Member
Posts: 150
1/7/2014 12:36 PM
Split
Robert, thanks for your reply. So essentially what I would like is everytime the form is open, it would be check if there is some value in a text box, if so the Add button would be inactivated .... So then how would I inactivate it .... Chris
Robert Spurr
Veteran Member
Posts: 130
1/7/2014 2:39 PM
Split
What I was saying is that you don't need to activate or inactivate the button but instead control whether the action should be processed. When they click the button a variable 'fc' will contain the action code in most cases for an Add it is "A". You would then check to see it was an Add along with the other criteria relevant to processing, in your case a text field and decide whether to allow the action to continue. As an example function FORM_OnBeforeTransaction(fc) { if (fc == "A" && lawForm.getFormValue("text48") == "Whatever") { //ends process return false; } return true; }
Chris12
Veteran Member
Posts: 150
1/7/2014 5:11 PM
Split
Thanks Robert ... I will give that a try today....
Chris12
Veteran Member
Posts: 150
1/10/2014 3:01 PM
Split
Robert, I am making some headway. Thank you very much. One last question, if there a way to change the FC of a button? For example from A to C ... Thanks
Robert Spurr
Veteran Member
Posts: 130
1/10/2014 7:58 PM
Split
The short answer is yes. You can change the properties directly on the form (Hardcode), assign a different value to FC through your script but be aware if you change it to something not defined and pass it through to process it will fail and finally you could update the properties value through your script, same issue as FC. The last option is the more difficult one and I don't have an example.
Please
login
to post a reply.