We migrated to Lightning and there is a custom button on the Opportunity page that loads a Visualforce page and I need to get it replicated to work in Lightning. I am not a developer nor do I have one available to me so I am looking for guidance on how to get this or similar functionality working in Lightning.
Any suggestions would be appreciated.

Need to convert a custom button/VF Page to lightning
526 Views Asked by user7417 At
1
There are 1 best solutions below
Related Questions in VISUALFORCE
- Why the Visual Force page request is called twice when used window.open JS from LWC?
- Display visualforce page of a managed package on the Force.com site
- Automate Visualforce PDF to corresponding G Drive Folder
- Integrate CKEditor5 Document type with Salesforce Visualforce page
- Save successful Authorize.net payment details in Salesforce
- Why does the url not change on my visual force page
- Unknown property referenced error in Visualforce
- Auto download a pdf rendered in Visualforce
- Salesforce Visualforce for Hosted Payment Page
- Visualforce <apex:actionFunction> Issue. Why Oncomplete attribute is executing first than rerender?
- Salesforce External Visualforce Page Not Rendering Error Message
- Filtering by Date Range in JQuery DataTables AJAX in Visualforce Page
- How to make a vf page redirect to a standard record create page
- How can I get a Visualforce page to save into files on the opportunity page using an extension controller?
- How to include/merge two visual force pages and have second page styling persist?
Related Questions in SALESFORCE-LIGHTNING
- UI Component(Table Rows) Taking Too Much too in LWC
- How can I automatically apply dark and light themes using the Lightning Email Template Builder in Salesforce based on the user's system preferences?
- Error in running apex code in vs code studio
- Declarative Rollup Summaries Deployment
- Trouble updating a Field in Salesforce via a Python Script
- User object Expressions not working in B2B Commerce LWR site
- Lightning-datatable: Inline editing with checkbox doesn't work
- What is the CSS @Page Property Selector to access the last page of the PDF? Do we have :last() selector in CSS?
- How to remove the default notification hover tooltip of salesforce CRM?
- Why the Visual Force page request is called twice when used window.open JS from LWC?
- Extracting and Storing Code Parameter After Logging In on Flutter App
- Generating barcode image in salesforce apex email with a generated sting in flows
- Not able to get the element using any of the locator in JS or in Selenium. This is salesforce website. Looks like they have protected by some means
- Save successful Authorize.net payment details in Salesforce
- How to hide or encrypt the payloads when API calling is made from js of LWC?
Related Questions in CUSTOM-BUTTON
- Custom rounded button using win32
- Changing the standard telegram authorization button to your own
- How to add a live demo button to a wooCommerce product page
- Pressable with custom icon onPress not working
- Why can't I set custom UIButton to the size I want?
- Can FullCalendar customButtons have custom colors
- Need to convert a custom button/VF Page to lightning
- Multiple Input Text handle in object and array in react native
- Custom TButton not showing on the Form
- Custom UIView won't take up entire screen width as should
- Flutter: How to store or hold the value of the button that user has been clicked?
- Swift - Custom UIButton Title Not Showing
- Styling custom google-sign-in button android
- How to make a button return to its initial state
- LiveCode-Custom button can't show on android emulator and real mobile phone
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You'll have hard time without a developer.
If the page still works, nothing's broken, it just looks classic - consider a minimal edit to add
<apex:page lightningstylesheets="true"to the top element. It'll be a bit of "lipstick on a pig" but might be just enough.If you really need to rebuild it as Lightning Component (a.k.a. Aura) or Lightning Web Component (LWC) you'll need a proper developer. Depends on page's complexity. Some consulting company might help you, AppExchange has "rent a coder" element, try on LinkedIn maybe. You may have to show the page to a guy and get a quote before they dive in. Your situation isn't unusual, I'm helping 2 companies few h/month, they don't need a full time dev.
Complexity will depend on whether the page is old school Visualforce with viewstate or mobile-friendlier one with "Visualforce Remoting". Is it more or less pure Apex and VF or are there 3rd party JavaScript libraries in use.
If you really want to do it yourself - you're able to write Aura straight in browser's developer console but it's bit passe. LWC is bleeding edge performance-wise but you'd need proper developer tools (SFDX, maybe VSCode) to work with it.