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
Disable DME object from being Actionable?
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Lauren Beeker
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5222
People Online:
Visitors:
75
Members:
0
Total:
75
Online Now:
New Topics
Lawson Portal
Need to limit available values in Manager Self-Service based on Action
4/16/2026 1:47 PM
Hello, Our managers have the ability in M
Lawson Portal
Lawson HR170 Jobs Index
3/30/2026 7:35 PM
Hi All, I am new in my role. The organization h
IPA/ProcessFlow
IPA Question - Filtering Employees by XRef Cost Center Across Person and HR Modules
3/2/2026 4:29 PM
Hello Everyone, I am building an IPA process in
Lawson S3 Financials
Lawson S3 to SAP S/4 Hana Migration
2/12/2026 8:54 PM
Can anyone recommend a consulting company who has
Lawson Add-Ins for Microsoft Office
Missing Multi-Stream Upload Option
7/12/2023 11:09 PM
Our IS department has made the server configuratio
Lawson S3 HR/Payroll/Benefits
Secure 2.0
12/8/2025 9:06 PM
Has anyone using S3 V10 for Benefits been able to
Lawson Add-Ins for Microsoft Office
More.... ic81.2
12/5/2025 10:51 PM
We build our PAR's with MS Addins using IC81 and o
Lawson Add-Ins for Microsoft Office
Deleting an Orphan Time Record with MS Add-ins
12/13/2025 7:26 PM
I have discovered an Orphan Time Record when dumpi
Lawson Landmark
Configuration Console - UserField
7/24/2019 6:05 PM
I have a userfield called "ContactCenter"&nb
Lawson Add-Ins for Microsoft Office
Uploads
11/20/2025 3:32 AM
The Next button has stopped functioning on the upl
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1377
Roger French
1315
mark.cook
1244
Chris Martin
825
Forums
Filtered Topics
Unanswered
Unresolved
Active Topics
Most Liked
Most Replies
Search Forums
Advanced Search
Prev
Next
Forums
User Experience
Lawson Design Studio
Disable DME object from being Actionable?
Please
login
to post a reply.
7 Replies
0
Subscribed to this topic
12 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Eddie Smith
Advanced Member
Posts: 39
9/27/2010 10:53 AM
Is there anyway to disable a DME query result from being "actionable"? In other words,when a user clicks on a row in the first DME object, a second DME object is rendered; however, we would like for the second DME object to be static (i.e. non-clickable).
David Williams
Veteran Member
Posts: 1127
New Poster
Congrats on posting!
9/27/2010 11:44 AM
Split
Does something happen when users click into the 2nd DME? This type of control is usually a JavaScript script.
Eddie Smith
Advanced Member
Posts: 39
9/27/2010 12:01 PM
Split
Yes, it tries to pass values to a 3rd DME query. The issue we have is that the 3rd DME is mapped to the first DME query similar to the 2nd DME; since what we are trying to show is the AR applications that exists against AR invoices. The problem is Lawson has 2 types of applications, invoice applications and credit appllications but both are stored in the same file..ARAPPLIED. Depending on the first DME query (which is against the AROITEMS file) row click either the 2nd DME or the 3rd DME query will render results. It's ok to render both DME queries, even though only one will be populated; we just don't want the user to be able to click on either the 2nd or 3rd DME query results.
David Williams
Veteran Member
Posts: 1127
New Poster
Congrats on posting!
9/27/2010 12:10 PM
Split
Okay, these types of changes/updates either occur because you've scripted them to or because you've done some data mapping. To disable you will need to update your Portal Page design. I can't tell you how to disable since I don't know what you've done to enable. Do you have a Design Studio expert on hand or did someone design these for you?
Eddie Smith
Advanced Member
Posts: 39
9/27/2010 1:07 PM
Split
We enabled the DMEs using the standard index Trigger Refresh in DS (no JAVASCRIPTING). I believe the problem is that since both the 2nd and 3rd DMEs are mapped to the 1st, it's causing the issue. We designed them ourselves using the standard DS toolset since we do not have a JAVASCRIPT expert on site.
Terry P
Veteran Member
Posts: 234
9/27/2010 1:56 PM
Split
Here is a little javascript code that might help you get started. I do believe you'll need javascript though.
[code] var dmeData1 = page.objects["am002_data1"] var dmeData2 = page.objects["am002_data2"] dmeData1.autoHide = true dmeData1.hide = false dmeData1.forceRefresh = true; dmeData1.refresh(); dmeData2.autoHide = true dmeData2.hide = true dmeData2.forceRefresh = true; dmeData2.refresh(); [/code]
Eddie Smith
Advanced Member
Posts: 39
9/27/2010 3:30 PM
Split
Thanks Terry for the javascript; however, we do not want to hide the DME we only want to keep the user from clicking on a row in the DME. Any suggestion on how to do this?
John Henley
Posts: 3365
New Poster
Congrats on posting!
Engaged Reader
You are an engaged reader!
Avid Reader
Avid Reader art thou!
10/21/2010 8:41 PM
Split
So you want this to be like a header/detail?, where clicking on a different record on DME1 (header) changes display in DME2 (details)?=
Please
login
to post a reply.