Disable List button
txantxagorri
Member Posts: 23
How can i disable the List button in a form?? The blue button which are in the top of the screen.
Thankssss!
Thankssss!
0
Comments
-
By removing LookupFormID property from the source table.
Be aware that this will disable default lookup form for this table and lookup from other places without special code won't work.0 -
ar4ijs wrote:By removing LookupFormID property from the source table.
Be aware that this will disable default lookup form for this table and lookup from other places without special code won't work.
No, i have made another form to view the jobs, and only in this form i want to disable the list button.0 -
This function is generic functionality of the NAV and you cannot just disable it, sorry. Try to describe why you need to do that, may be we can help you to find another way around.0
-
I have the same problem, whereby I have created a bespoke Customer Card that has limited fields available and removed the buttons at the bottom of the screen so that access is limited.
The problem is because it is using the Customer table it inherits the List form from this table, so when the user clicks the list button, they are able to get back to the original Customer Card.
One way round it is that I will have to create a new field in the User Setup table and code into the list form that will prevent the user being able to open this form.0 -
Hi,
Another suggestion is to use roles and permissions... Very time consuming but the customer might do it for you ( oh look a flying pig...
) 0 -
Hi All,
Step 1: Create a flow filter field in the table with name "Form Filter".
Step 2: On the form for which you want to disable list button write the following code
Form - OnOpenForm()
SETRANGE("Form Filter",5740);
Where 5740 is the form ID of the form for which you want to disable list button
Step 3: Now write the folloowing code on the List Form
Form - OnOpenForm()
IF GETFILTER("Form Filter") = '5740' THEN
CurrForm.CLOSE;
Code written in the step 2 will send the Form No. to the list type form with the help of flow filter.
and then the code written in the step 3 will close the list form as soon as it is opened from the form for which you want to disable list button.
I hope this information will solve your problem.
Thanks,
Nitin Dabas
NIDA Technologies (P) Limited
New Delhi, IndiaNitin Dabas
NIDA Technologies (P) Ltd.
New Delhi, India0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 333 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions
