Disable inline editing Salesforce list view

Tagged:Inline Editing, Salesforce Records, Standard Button

  • How can we disable the inline editing of records in Salesforce?

    Disable inline editing Salesforce list view
    Gourav
    updated 5 years, 7 months ago
    2 Members · 2 Posts
    Salesforce® Discussions
    • Inline Editing
    • Salesforce Records
    • Standard Button
  • Disable inline editing Salesforce list view

    Ajit

    Member
    April 30, 2016 at 4:34 pm

    How can we disable the inline editing of records in Salesforce?

  • Disable inline editing Salesforce list view

    Gourav

    Member
    June 1, 2016 at 10:09 am

    Hi,
    I was able to disable the InLine Editing after overriding the Edit Button with this code in the s-control

    <html>
    <head>
    <script src="/soap/ajax/8.0/connection.js">
    </script>
    <script>
    function init()
    {
    window.parent.location.href = "{!URLFOR($Action.Donation__c.Edit, Donation__c.Id,[retURL=URLFOR($Action.Donation__c.Edit, Donation__c.Id)], true)}";
    }
    </script>
    </head>
    <body onload="init()">
    <p>&nbsp;</p>
    </body>
    </html>

    When the edit button is clicked the control is transfered to the edit page propoerly, but when I click the save button. The record is saved and the same page is displayed, it does not go back to the details page (with inline editng and edit button) even when I press the cancel button the same page is display as the control is being transfered to the s-control which is transfering back to the edit page, is there some way to disable this on the edit page is displayed..
    can i do something like this..
    <html>
    <head>
    <script src="/soap/ajax/8.0/connection.js">
    </script>
    <script>
    function init()
    {
    if (Page is Detals_Page)
    window.parent.location.href = "{!URLFOR($Action.Donation__c.Edit, Donation__c.Id,[retURL=URLFOR($Action.Donation__c.Edit, Donation__c.Id)], true)}";
    Else
    window.parent.location.href = "{!URLFOR($Action.Donation__c.view , Donation__c.Id,[retURL=URLFOR($Action.Donation__c.view,
    }
    </script>
    </head>
    <body onload="init()">
    <p>&nbsp;</p>
    </body>
    </html>
    Hope this will help you also.

Viewing 1 - 2 of 2 posts

Log In to reply.

  • Public
  • All Members
  • My Connections
  • Only Me
  • Public
  • All Members
  • My Connections
  • Only Me
  • Public
  • All Members
  • My Connections
  • Only Me

Reply

Subscribe

Disable inline editing Salesforce list view

Design an Experience To Enterprise Excellence With Salesforce Lightning

Blog in Lightning

A customer dominated economy where we live in; CRM plays a vital role in the maintenance and growth of a business. Now, we are required

Lightning Platform Capabilities, Migrate to Salesforce Lightning Platform, Salesforce Lightning, Salesforce Lightning Platform
Disable inline editing Salesforce list view
Disable inline editing Salesforce list view

Control Salesforce Lightning Tabs With Next & Back Buttons

Blog in Coding and Scripting, Lightning, Salesforce Implementation

Hello, In this post, we are going to create a sample lightning component to control <lightning:tab> with Next and Back buttons. In this code we

Custom Component in Salesforce, Salesforce Customization, Salesforce Lightning, Salesforce Lightning Code, Salesforce Lightning Component
Disable inline editing Salesforce list view
Disable inline editing Salesforce list view

Salesforce Einstein Voice Stop typing and start Selling!

Blog in Salesforce Einstein

Imagine each of your Sales reps had a personal assistant who could handle monotonous and boring tasks while your Sales reps stay focused on their

Accounts in Salesforce, AI in CRM, AI in Salesforce, CRM, CRM Technology
Disable inline editing Salesforce list view
Disable inline editing Salesforce list view

How to Set Up Salesforce Knowledge in Service Cloud

Video in Salesforce Cloud Platform

Help your customers and agents find answers they are searching for faster with Salesforce Lightning Knowledge. In this video, we will review: - All components

Salesforce Training, Salesforce Tutorial, Salesforce Lightning, salesforce, salesforce knowledge
Disable inline editing Salesforce list view
Disable inline editing Salesforce list view

How to Learn Salesforce in easy step by step and get certified

Video in Others

From Salesforce instructor, Become aSalesforce Expert. Learn Salesforce step by step and get certified easily.

Salesforce Tutorial, salesforce, Salesforce Instructor, Salesforce Expert, Salesforce Dashboard
Disable inline editing Salesforce list view
Disable inline editing Salesforce list view

Process Builder or Apex Triggers - Choosing Between Salesforce Automation Tools

Video in Salesforce Automation

The Salesforce Platform offers several means to operate in the background: Process Builder, Triggers, Flow, Workflows, and more. With so many robust options, it can

Salesforce Administrator Training, Salesforce Developer, Salesforce Process Builder, Salesforce Triggers, Process Automation
Disable inline editing Salesforce list view