Anjali
IndividualForum Replies Created
-
Anjali
MemberDecember 9, 2020 at 2:12 pm in reply to: How do you call a component from an application in lightning?Please refer the below link-
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/js_cmp_methods.htm -
Anjali
MemberDecember 8, 2020 at 1:39 pm in reply to: How can we use Lightning Components with the Salesforce1 Mobile App ?Step 1 : Create lightning component.Step 2 : Create lightning component tab.Step 3 : Add component tab on Salesforce1 navigation menu.
-
Anjali
MemberDecember 8, 2020 at 1:35 pm in reply to: Why lightning:datatable is not supported on mobile devices in Salesforce?Use <lightning-datatable class="slds-max-medium-table_stacked" ...> for showing data in table format on mobile devices.
-
Anjali
MemberDecember 7, 2020 at 12:19 pm in reply to: How actions are useful in Salesforce workflow Actions?Automations are easier with workflow actions. When a record meets all the criteria for a workflow rule, that rule’s actions are executed.
-
Anjali
MemberDecember 7, 2020 at 12:13 pm in reply to: How to Enable the Email Approval Response in Salesforce?- From Setup, enter Process Automation Settings in the Quick Find box, then select Process Automation Settings.
- Select Enable email approval response.
- Save your changes.
-
Anjali
MemberDecember 7, 2020 at 12:07 pm in reply to: What is one of the key benefits of Sales Cloud in Salesforce?With Sales Cloud, you can grow your accounts faster, find new customers faster, and close deals faster — from anywhere.
-
Anjali
MemberDecember 4, 2020 at 1:30 pm in reply to: What is the difference between dialogs and workflow?Workflows are a process you automate to run in the background and can be triggered manually and automatically. When you trigger a workflow, it will do a launch a number of actions such as update or create a record or even launch another workflow.
The entity that stores information generated by a running dialog is the ProcessSession (dialog session) entity. -
Anjali
MemberDecember 4, 2020 at 1:26 pm in reply to: How do I calculate time-based workflow in Salesforce?When a workflow rule that has time-dependent actions is triggered, use the workflow queue to view pending actions and cancel them if necessary.
-
Anjali
MemberDecember 3, 2020 at 1:57 pm in reply to: How many Master-detail relationship fields can be created in an object?Each custom object can have up to two master-detail relationships and many lookup relationships. Each relationship is included in the maximum number of custom fields allowed.
-
Anjali
MemberDecember 3, 2020 at 1:56 pm in reply to: What are the actions in the workflow in Salesforce?Immediate actions: Actions that get executed immediately when a record is created or edited.Time-dependent actions: Actions that get executed after a certain duration of time, such as 10 days, before a record's close date.
-
Time triggers are used when we need to execute workflow actions at certain time based scenarios.
-
Anjali
MemberDecember 2, 2020 at 2:11 pm in reply to: How do you include a script in lightning component?Please refer the below link-
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/js_libs_platform.htm -
To use jQuery in lightning component, please refer the following link-
https://www.biswajeetsamal.com/blog/how-to-use-jquery-in-salesforce-lightning-aura-component/ -
Anjali
MemberDecember 2, 2020 at 2:06 pm in reply to: How do I add a static resource in Visualforce page?Add a Static Resource to a Visualforce Page<wbr><wbr> Use the $Resource global variable and dot notation to reference a stand-alone static resource.
-
Lightning Components are a user interface (UI) framework that is used to create applications for desktop and mobile technologies.
-
Lightning Component architecture lets developers use a standardized JavaScript framework that isn’t held back by some of Visualforce’s limitations (the legacy framework), which allows them to create customized pages and functions without a third-party framework, or vendor.
-
Anjali
MemberDecember 1, 2020 at 1:12 pm in reply to: What is difference between lightning components and lightning Web components?Both Lightning Components and Lightning Web Components serve to help the Salesforce platform be more accessible and easier to utilize, more flexible. That’s the beauty of the Salesforce platform. As you look to help optimize the user experience and turn out a faster web page, Lightning Web Components should definitely be front of mind.
-
Multipart/form-data should be used for submitting forms that contain large files, non-ASCII data, and large binary data. Moreover, multipart/form-data can be used for forms that are presented using representations like spreadsheets, Portable Document Format, etc. i.e other than HTML.
-
Anjali
MemberNovember 30, 2020 at 1:36 pm in reply to: What is the content type for form data in Salesforce?contentType == 'multipart/form-data;
-
Anjali
MemberNovember 30, 2020 at 1:34 pm in reply to: Is it hit request body in Blob format in Salesforce integration?Please refer the below link-
https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_sobject_insert_update_blob.htm -
Anjali
MemberNovember 27, 2020 at 12:41 pm in reply to: How to use carousel in Lightning Component in Salesforce?Use the lightning-carousel-image component to specify images to display in the lightning-carousel component. You can specify up to five images. The images are displayed in the order you list them in the lightning-carousel component. For each image, use the src attribute to specify the path to the image.
-
Anjali
MemberNovember 27, 2020 at 12:40 pm in reply to: How to update object fields in Lightning Component in Salesforce?Please refer the below link-
https://salesforce.stackexchange.com/questions/96793/how-to-update-a-field-with-lightning-components -
Anjali
MemberNovember 26, 2020 at 2:23 pm in reply to: How to check for error when two input are null on click of button in Salesforce?To show error for input field in lightning component, please refer the below link-
https://salesforcediaries.com/2020/04/30/validate-lightning-input-field-on-button-click-in-lightning-record-edit-form/ -
Anjali
MemberNovember 26, 2020 at 2:21 pm in reply to: How to select all fields of an object from developer log in Salesforce?Please refer the below link-
https://developer.salesforce.com/forums/?id=906F00000008oLMIAY -
Anjali
MemberNovember 25, 2020 at 12:36 pm in reply to: What are the differences between a Visualforce page and an Aura component bundleVisualforce components:
It offers a wide range of tags that are fixed at the server-side. They operate along with custom or standard controllers and help in DB and other processes to be implemented easily. Being a page-centric web application model, it is the best option for basic functionality but lacks in providing the latest and dynamic user experience.
Lightning components:
They are the more advanced components of the Salesforce UI framework for building dynamic web applications for desktop and mobile devices. It uses JavaScript at the client-side and Apex at the server-side to offer the business and data logic. JavaScript is employed to develop, modify, animate, and transform the UI instead of replacing every page at a time.