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:
Steve G
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5242
People Online:
Visitors:
162
Members:
0
Total:
162
Online Now:
New Topics
S3 Systems Administration
Lawson Security Admin (LSA) - Securing Print Manager to self only
10/24/2025 6:27 PM
Looking for someone who would be willing to share
Lawson Add-Ins for Microsoft Office
Lawson Add-in
9/30/2025 6:51 PM
I am looking for a Lawson Add-ins query to add new
Lawson S3 Procurement
Anyone getting PO 0000 not found for company error in PO23?
9/30/2025 2:45 AM
Anyone getting PO 0000 not found for company error
Lawson Add-Ins for Microsoft Office
PO20 - Cancel PO via Add-in
9/25/2025 8:03 PM
Is it possible to cancel PO's using add-ins? I
S3 Systems Administration
S3 Payroll - PayStubs
9/18/2025 6:58 PM
Looking for a reliable solution to streamline the
S3 Systems Administration
Quick Access report
8/25/2025 7:17 PM
Looking for a good way to see who has access Lawso
S3 Customization/Development
LP01 hiding a PTO plan from the list
8/13/2025 4:44 PM
Hi all. is there a way to hide a specific PTO&n
Lawson Business Intelligence/Reporting/Crystal
GLTrans - PO Line/MAInvdtl
8/6/2025 6:13 PM
Hello, we have an existing tabular model for fina
IPA/ProcessFlow
Retrieving GUID from InforOS
7/25/2025 2:22 AM
Hello everyone, I was wondering if there is a way
IPA/ProcessFlow
IPA for forwarding cost messages (MA64/MA66.3)
7/23/2025 6:07 PM
When a buyer has an invoice cost message where the
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
Chesca
1042
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
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
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
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: 3362
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.