What is Custom Settings in Salesforce and Explain It ?


What are Custom Settings in Salesforce?

Custom settings are objects that developers use to create different customized sets of data that have an association with the company, user, or profile. There are options where you can set the custom settings to either public or private. Some of the areas where custom settings get applied are the fields, Apex, flows, SOAP API, and validation rules. The data created by customer meetings must meet the user’s needs, allowing users to access it faster using the application cache. 

When you have data using the settings, users do not need to use database querying languages or the Salesforce Object Query Language to get the data. It uses custom objects which developers build to fix all the business processes and information that does not work well with the Salesforce objects. Many businesses should learn how to use custom settings and benefit from them. Some of the custom fields that the developers use are currency, checkbox, phone number, date and time, URL, text, number, textarea, percent, e.t.c.

The settings can lack some fields like lookups, formulas, picklists, e.t.c. which are important to use. It also lacks page layouts that developers can use. The lack of layouts forces developers to use visual force pages to meet the requirements. When working with these settings, there are no rules that one must use. 

                  Wish to make a career in the world of salesforce? Start with HKR’S  salesforce online training 

Types of Salesforce Custom Settings

We have two types of custom settings. This are:

List Custom Settings

It works with how the custom objects function. The main purpose of this custom setting is to cache all the data. It reduces the cost of the data due to easy access to the data. It makes the accessing of static data across the company easy. It eliminates the use of SOQL queries which are sometimes against the limits. What the users need to do is put the data in this type of setting without writing any SOQL for accessing the data. The data provided in the list settings does not vary according to the users or profiles, making it impossible for anyone in the company to access it.

The data is useful to different departments of the company. It enables the developers to have reusable data which everyone can access in the company. This setting is good for the type of data sets that companies use mostly in their salesforce applications.

We create a list custom settings by following the steps below:

  • Locate the menu and search for the Schema settings, toggle the button of Manage list custom settings to turn it on. By default, most of the settings are in hierarchy custom.
  • Under the Custom Setting Definition, input the names under the label and Object Name and then change the Setting type from Hierarchy to List.       List Custom Settings   
  • When working with data like phone numbers, when you input the country codes into the labels, It automatically fetches into the form without querying the database. After filling in the details under the label and other fields, click on the Save button.
  • Navigate to the custom fields, click on the New button, and it will open a new page where you get prompted to choose the Data type and choose the type according to the data you entered in the custom definition. If it was phone numbers, choose the phone and click Next. We will select text. 

List Custom 

  • On this page, there are several fields like Field label, length, field name, Description, e.t.c. Fill them out and click Save.
  • Under the created label, click on the Manage option to provide new fields.

created label

  • After all, the new fields click Save, and you can view your complete list of custom settings.

Salesforce Training

  • Master Your Craft
  • Lifetime LMS & Faculty Access
  • 24/7 online expert support
  • Real-world & Project Based Learning

Hierarchy Custom Settings

Hierarchy custom settings help in ensuring the majority have the advantages for users. Its logic is efficient and enables users to customize their settings using different settings and rows. The settings match particular profiles and contacts that will meet the requirements of the company’s clients. This type of setting can scan all the client companies and their necessary profiles, look at the tasks handled by different people, and ensure that the final values shown to the user are more accurate and specific to what they want. 

It makes the companies make certain settings to several profile settings meant for the users, which get subjected to the user settings individually. They help the companies and their clients to define all their data hierarchically. This type of setting is suitable when defining defaults used by specific Salesforce applications, relying on the users, companies’ needs, and certain profiles. Hierarchy custom settings sync well with the Salesforce functionalities since they are highly customizable, and you can change them to meet the customer’s needs.

We can create an example of a Hierarchy Custom Setting using the steps below:

  • Navigate to the Custom Settings option, input the data under the Label, Object Name, Setting Type by default is a hierarchy and click on the Save button.
  • A new dialog box will open, and you will get prompted to choose the type of data type, select the one that matches your inputs, and Save.
  • Under the next step, fill in your Field Label, Length, Field Name, and Description, among others, and click on the Save option.

Hierarchy Custom Settings    

  • When the dialog opens, click on the New button to create organizational access to the data.
  • After saving, you will get options to add other alternatives.
  • Another dialog box will pop up, prompting the administrator to add the profiles that will get associated with the values. When you click the Save button, several users will be under the custom settings. And that’s the whole process of creating the hierarchy of custom settings.
How to Create Custom Settings

Log in to your Salesforce CRM, locate the Custom Settings, and several fields require one to fill. Under the label and Object name, input worker for both fields. Under the Settings section, choose between list and Hierarchy. Under Visibility, set it to public, enter the Description, then click on the Save button.

How to create custom settings

In some cases, you find that some parts of the settings section got disabled, you need to navigate to the schema settings and change the settings to enable it. Go to the custom fields and create the field by entering data into Field Label, Data type, API name, and action. To add data, hover over the Action settings to add more data.

Enroll in our Siebel CRM Admin Training program today and elevate your skills!

HKR Trainings Logo

Subscribe to our YouTube channel to get new updates..!

Why do we need Custom Settings?

Using custom settings in the Salesforce CRM and applications has several benefits. This include :

  • It allows faster fetching of data, for example, if you have many records and you want to retrieve one row, you will use custom settings to get the result in a short period due to the ability of customer settings to get stored in the cache.
  • They also avoid the chances of hitting the governing limits. There are several governing limits from SQL queries, DML statements, Sendmail methods, SOSL queries, e.t.c.
  • Due to the use of application cache, one can have faster data access, leading to better performance.
  • It enables the users to access different data according to the user’s profile and role in the organization, which promotes data integrity.
  • If you lack knowledge about databases or the Salesforce Object Query Language, it helps you avoid learning them.

                  Wish to make a career in the world of salesforce? Start with HKR’S  salesforce online training  in Canada 

How to Fetch Custom Settings in Salesforce?

There are several ways of fetching custom settings in Salesforce. These methods are:

To fetch custom settings, it depends on the type of custom settings. Let us look at all types of settings.

How to fetch data on list custom settings.

We use the getAll() method to fetch certain custom fields found in List settings. The method returns a list of the names and all the setting records i.e 

Map var =

CustomApiName.getAll();

Eg: Map worker = Worker__c.getAll();

We use the getValues() method  to fetch the values that match with a certain dataset. It normally works for both the custom settings i.e 

CustomApiName var = CustomApiName.getValues(name of dataset);

For example Worker__c stud = Worker__c.getValues('Mark');

To fetch values for hierarchy custom settings, we use the methods below to achieve the same:

We use getOrgDefaults() method to return the data set records for the company i.e 

CustomApiName var = CustomApiName.getOrgDefaults();

We use getInstance(input the user id or the profile id) method to get data records for a certain user or profile details i.e

CustomApiName var = CustomApiName.getInstance(userId/ProfileId);

We use the getInstance() method to get the records for the logged users.

CustomApiName var = CustomApiName.getInstance();

Limitations of Custom Settings in Salesforce?

Some of the limitations of using Salesforce include:

  • Each custom setting can only handle 300 fields. If there are more than 300, they can’t support more than 300 fields.
  • When storing the cached data, the storage will depend on the licenses. For 1 MB, you get the multiplication by using the licenses each organization owns. For example, a company can support up to 4MB of storage if it uses four licenses.
  • When you want to access an undeleted custom setting, you will get an error if you don’t have permission to access the custom settings. 
  • There is no option to share the custom setting records and objects.
  • When creating the custom setting, you cannot get the ownership after its creation.
  • When dealing with each certified package, one gets a separate limit when working with the company limit.

Click here to get frequently asked Salesforce Interview Questions & Answers

Salesforce Training

Weekday / Weekend Batches

 Conclusion
When creating custom settings in a distributed package, you must develop several builds for populating the custom settings with data after the package installation. Implementing custom settings is easier and straightforward and has many benefits for the users. The article has enabled you to better understand the two types of custom settings, the advantages, and how to install them in your application.

Related articles:



Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


Salesforce Training

  • Master Your Craft
  • Lifetime LMS & Faculty Access
  • 24/7 online expert support
  • Real-world & Project Based Learning

Who can use the Salesforce Lightning Design System?

The Salesforce Lightning Design System gives you everything you need to develop user interfaces that follow Salesforce Lightning’s concepts, design style, and practice guidelines. Developers may concentrate on app logic instead of pixels, whereas developers could concentrate on customer experience, interfaces, and workflows. The website offers a variety of services for developers and designers, including:

  • Component markup that is both meaningful and accessible.
  • CSS that is cross-browser compatible.
  • Design guidelines, icons, and fonts

The three users are as follows:

Developers

  • Make sure you’re familiar with the ones that follow:
  • Have a quick rundown of the Markup and Style rules, along with the CSS class naming practices.
  • Examine the Components; for each offers semantically valid and readily available markup and documentation.

Take a look at the platform-specific setup instructions beneath.

Designers 
Begin with the following:

  • Learn about the Salesforce product development patterns and concepts by looking through the Guidelines.
  • Examine the Components section to become familiar with the current components that you can use in your projects.

Design Guidelines

The Lightning Design System is based on the Salesforce product’s designs and components. While creating applications and solutions inside the Salesforce ecosystem, such designs and elements could provide specific language and uniform appearance and experience.

Design Concepts:

When we make design choices at Salesforce, we always keep those key points into consideration, and also inspire you to do the same.

  • Clarity: Get rid of any ambiguity. Allow individuals to confidently perceive, comprehend, and act.
  • Efficiencies: Simplify and improve workflows. Predict requirements wisely to help individuals perform better, wiser, and quicker.
  • Employing the very same approach to a certain situation creates familiarity and strengthens instinct.
  • Beauty: By deliberate and exquisite craftsmanship, show respect for a person’s attention and time.

Lightning

In Lightning, begin using the Lightning Design System. Kindly give particular attention to the criteria for such Lightning technology you’re using:

  • Stand-alone Lightning app
  • Salesforce1 
  • Visualforce Lightning Components
  • Lightning Experience
  • Lightning Out component.

Want to gain knowledge in Design Patterns? Then visit here to learn Design Patterns Training!

What are the lightning components in Salesforce? 

There’s a great deal of discussion nowadays about Salesforce Lightning Components being used in Salesforce App solutions. Salesforce administrators use such components to build mono web apps that have an end-to-end encounter for just a variety of roles on the system. It’s important to keep in mind that:

  • Lightning components has end .cmp extensions.
  • Web components seem to be the foundation for Lightning components.
  • The Salesforce lightning application is installed with Apex, HTML,  JavaScript, and CSS.

Salesforce Lightning and Lightning Components were developed in response to the growing demand for mobile devices and fully responsive website development. There are three different types of Lightning Components you should know about. They are – 

 

Standard Lighting Components: 

These are pre-installed in the templates of the salesforce object pages. You could prefer to cover them or not use them, however, you can’t take advantage of them. It’s for this reason that they’re known as Standard Lighting Components. Each edition has been added to the list of Standard Lightning Components. The types accessible in Salesforce’s Lightning App Builder are determined by the Page Type and Object you choose. An App Page, for example, has the fewest Standard Lightning Components whereas a Record Page has the most. Certain Standard Components, like Tabs and linked Lists, serve as containers for many other Page Components.

Custom Developed Lighting Components: 

All of those are advanced lightning components that are created to meet the organization’s specific requirements. Custom Lightning Components can be developed by somebody with development expertise. This enables us to search and format information in Salesforce in new ways, draw information from external platforms for presentation, and develop custom functions in a system. Designers test and validate Components in a Sandbox or a Developer Org. When the Component is ready, a programmer elevates it to Production so it can be used in a Lightning Page.

AppExchange Lightning Components:

Most of the elements you’ll require may already be constructed and accessible on the AppExchange platform. All you have to do now is install them and then drag – and – drop them into the area where you wish to use them. Custom Managed Lightning Components can be created by Salesforce and its partners. These components are available for download and installation on Salesforce’s AppExchange. There are about 200 Components accessible on the AppExchange until this type, with 160 of them being free. Catalogs, grid layouts for Related Lists, or maps are common among some of the free ones. There are indeed several that give you access to third-party systems like Box, Vidyard,  DocuSign, TaskRay, and others. Whereas the paid listing of Lightning Components remains currently limited, it will keep growing as Lightning becomes more widely adopted. Here’s an example of a free component named USA Heatmap included in an account page.

 , Cloud Computings, salesforce-lightning-design-system-description-0, Cloud Computings, salesforce-lightning-design-system-description-0, , Cloud Computings, salesforce-lightning-design-system-description-0, AppExchange Lightning Components, Cloud Computings, salesforce-lightning-design-system-description-1, Cloud Computings, salesforce-lightning-design-system-description-1

Considerations for Components

Lightning Components have diverse attributes and could be rendered conditionally displayed on the page, which are two crucial concerns. Tap on an item in the Lightning App Builder to view its Data from an existing to the right. Filters can also be applied to control the component’s presentation related to data contents in the Record. As example, we could opt to reveal the Component solely to clients while hiding it from buyers and partners. To do the same, go to Set Component Visibility and select Add Filter. The Account Type element is then used to declare that the Component should only be visible to Customers.  Additional thing to keep in mind is that many Components could be placed in the same Lightning page template slot.

, Cloud Computings, salesforce-lightning-design-system-description-0, Cloud Computings, salesforce-lightning-design-system-description-0, , Cloud Computings, salesforce-lightning-design-system-description-0, AppExchange Lightning Components, Cloud Computings, salesforce-lightning-design-system-description-1, Cloud Computings, salesforce-lightning-design-system-description-1, , Cloud Computings, salesforce-lightning-design-system-description-0, AppExchange Lightning Components, Cloud Computings, salesforce-lightning-design-system-description-1, Considerations for Components, Cloud Computings, salesforce-lightning-design-system-description-2, Cloud Computings, salesforce-lightning-design-system-description-2

Click here to get frequently asked Salesforce interview questions & answers

, Cloud Computings, salesforce-lightning-design-system-description-0, Cloud Computings, salesforce-lightning-design-system-description-0, , Cloud Computings, salesforce-lightning-design-system-description-0, AppExchange Lightning Components, Cloud Computings, salesforce-lightning-design-system-description-1, Cloud Computings, salesforce-lightning-design-system-description-1, , Cloud Computings, salesforce-lightning-design-system-description-0, AppExchange Lightning Components, Cloud Computings, salesforce-lightning-design-system-description-1, Considerations for Components, Cloud Computings, salesforce-lightning-design-system-description-2, Cloud Computings, salesforce-lightning-design-system-description-2, , Cloud Computings, salesforce-lightning-design-system-description-0, AppExchange Lightning Components, Cloud Computings, salesforce-lightning-design-system-description-1, Considerations for Components, Cloud Computings, salesforce-lightning-design-system-description-2, , Cloud Computings, salesforce-lightning-design-system-description-3, Cloud Computings, salesforce-lightning-design-system-description-3

Subscribe to our YouTube channel to get new updates..!

Components 

Components seem to be the application’s self-contained, replaceable units. These are reusable pieces of the user interface that can be as small as a single line of text or as large as a full app. A collection of prebuilt components is incorporated within the framework. Inside an application, you could combine and adjust components to create new ones. Components are displayed in the browser to create HTML DOM elements. HTML, CSS, JavaScript, or other Web-enabled code could be included in a component. This allows you to create apps with advanced user interfaces. The specifics of a component are contained. This lets the component’s user to concentrate on developing their application, whereas the author of the component can experiment and implement modifications without disrupting users. The named properties that components reveal in their definition are used to configure them. Responding to or broadcasting events allows components to interact with their surroundings.

Lightning Component Framework

The Lightning Component framework’s functional units are called components. A component is a flexible and presumably reusable UI piece that can be as small as a single line of text or as large as an entire program. This is a Lightning Platform framework for creating single-page apps with a flexible, adaptable User Interface. 

Creating Components

  • In the Developer Console, build Lightning Components.

The Developer Console is a built-in tool that allows you to create new Lightning components and other packages as well as edit existing ones.

Component resources include a.cmp suffix and contain markup. The markup might include text or links to certain other components, as well as provide metadata for the component.

A component bundle is a collection of resources that includes a component or an application.

Component IDs  In JavaScript, you can obtain a component by using its local ID. A universal ID could be beneficial for debugging or distinguishing between several instances of a component.

The framework treats an HTML tag as a first-class component. Each HTML tag is converted into a component, giving the same liberties and facilities as other components.

CSS is used to style the components.

In Apex, component attributes are similar to member variables on a class. They are specified fields that are established on a particular example of a component and could be retrieved through the use of an expression syntax from inside component’s HTML. You can use attributes to create elements more flexible.

  • Composition of components

You may create highly intriguing components and apps by combining perfectly alright components in a bigger component.  Every component’s root-level tag is called the component body. 

Any Aura attribute is referred to as a facet.

  • Component[]. A facet is something like the body attribute.
  • Conditional Markup Best Practices

To conditionally show markup, use the tag. You can also use JavaScript logic to dynamically modify markup. While designing components, keep in mind the cost of functionality and also the manageability of the code. Your optimal design option is determined by your use case.

Component versioning allows you to express dependencies on certain revisions of a managed package that has been installed.

  • Putting Expressions to Work

Within component markup, phrases attempt to perform computations and retrieve property prices and other data. Use expressions to generate dynamic output or to send values to components via attributes.

The Label is a text which displays data about the user interface in places like the headers (1), input boxes (2), and buttons (3). (3). While you can define labels using text variables in components markup, you could also use the $Label worldwide value providers in expression syntax to obtain labels maintained beyond your code.

In input and output components, the framework supports client-side localization.

  •  Versioning of individual components

You can indicate dependencies on individual components by using component versioning. Documentation for your components aids others in comprehending and using them.

The Lightning Component framework is depicted in the diagram below. There are three parts to this:

  • Client-side: JavaScript is in charge of this.
  • Salesforce Cloud is used to link both the server and the client.
  • Apex Controller is in charge of this on the server-side.

, Cloud Computings, salesforce-lightning-design-system-description-0, Cloud Computings, salesforce-lightning-design-system-description-0, , Cloud Computings, salesforce-lightning-design-system-description-0, AppExchange Lightning Components, Cloud Computings, salesforce-lightning-design-system-description-1, Cloud Computings, salesforce-lightning-design-system-description-1, , Cloud Computings, salesforce-lightning-design-system-description-0, AppExchange Lightning Components, Cloud Computings, salesforce-lightning-design-system-description-1, Considerations for Components, Cloud Computings, salesforce-lightning-design-system-description-2, Cloud Computings, salesforce-lightning-design-system-description-2, , Cloud Computings, salesforce-lightning-design-system-description-0, AppExchange Lightning Components, Cloud Computings, salesforce-lightning-design-system-description-1, Considerations for Components, Cloud Computings, salesforce-lightning-design-system-description-2, , Cloud Computings, salesforce-lightning-design-system-description-3, Cloud Computings, salesforce-lightning-design-system-description-3, , Cloud Computings, salesforce-lightning-design-system-description-0, AppExchange Lightning Components, Cloud Computings, salesforce-lightning-design-system-description-1, Considerations for Components, Cloud Computings, salesforce-lightning-design-system-description-2, , Cloud Computings, salesforce-lightning-design-system-description-3, Lightning Component Framework, Cloud Computings, salesforce-lightning-design-system-description-4, Cloud Computings, salesforce-lightning-design-system-description-4

Salesforce Lightning Component is based on the Aura Component, which allows for the creation of dynamic web pages with just a scalable lifecycle to facilitate the development of growth-oriented apps. Aura Components are customizable UI parts represented by reusable components. Aura Components can be used in anything from a single statement to a full application. Aura Component is the foundation for Salesforce Lightning Component. Aura Component allows for the creation of dynamic web pages using a scalable lifetime to serve growth-oriented applications. The client and browser are linked through a multi-tier divided component in Aura Component. It features a responsive web design because it is built on the Aura framework. The lightning component in this way utilizes the very same code for all computers, mobile devices, and tablets, however, display based on the screen.

Lightning strikes quickly and will not replicate its sequence in real life; similarly, the Salesforce lightning design methodology is easy to use and isn’t using a similar model with different service customers. It allows you to deliver customer service, technical expertise, and varied instances all in one place.

Lightning Component Structure

In a word, Lightning Web Components have customized HTML objects created on the front end utilizing JavaScript, HTML, and CSS, with the potential to link to Apex as a console on the backend. The best part is that you can use both Lightning Web Components & Aura Components on a very similar page. The lighting component is adaptable, dynamic, and aids in focusing on the business visualization. Both the client and server sides of the lightning component employ separate technologies: the client-side uses JavaScript and the server-side uses Apex. When you start using the lightning component framework, you’ll discover that it will have a lot of benefits. 

  • The Salesforce Lightning framework makes it easier to create and develop apps. 
  • Many Salesforce users can access and use these components.
  • All browser technologies, including CSS, HTML5, and others, are enabled by the Lightning framework.
  • It allows for more engagement between users.
  • Data was exchanged between customer and server via JSON.
  • It has reusability, as well as adaptive and appealing designs.
  • It has an appealing user interface.
  • The framework aids in the development of various apps for mobile and desktop platforms.
  • It aids in the rapid performance of applications.

How to start building lighting components?

  • To make Salesforce Lightning Components, you’ll need to do the following:
  • Go to Developer Console after logging into the Salesforce developer account.
  • Then select File, then New, after that choose Lightning Component from the File menu.
  • Give the lightning component a name and a description that you like. and then press the Save button.
  • Configure the new component with component configurations. Inside the Component Configuration section, you could choose quite as many parameters as you want.
  • To develop the component, click Submit.

Where can you use Lightning Components?

Lightning is a CRM solution that responds to customer requests for a quicker, easier application development method and more efficient cycles in between business, IT, and client. Lightning components can be used to personalize your Salesforce organization in a variety of ways. It could be used to develop self-contained applications that are shared on Salesforce. You’ll gain a better understanding of Salesforce once you learn how to use Lightning Components. 

Why we should be using the Lightning Component Framework?

An out-of-the-box set of characteristics, event-driven design, and a performance-optimized framework are among the advantages.

The following are some reasons to use the Lightning component.

Comes with a pre-installed collection of components to get you started designing apps right away. You won’t have to waste time customizing your applications for various devices because the components will do it for you.

  • The ecology in use is made up of several different elements. Develop business-ready components for Lightning Experience, Salesforce1, and Communities and give them access. The navigation menu allows Salesforce1 consumers to connect your components. Drag-and-drop components on such a Lightning Page inside the Lightning App Builder or even use Community Builder to personalize the Lightning Experiences or Communities. The AppExchange has more elements for your organization. You could also share and distribute your components with certain other users.
  • Faster and more effective performance. Provides a domain-specific consumer and stateless server architecture to handle Ui metadata and app data on the consumer side, relying on JavaScript. The user only communicates with the server when it becomes absolutely essential, such as to obtain additional metadata or information. To enhance productivity and effectiveness, the server simply provides data that the user requires. The framework communicates information between both the client and the server using JSON. It uses the server, browsers, gadgets, and networking smartly so you can concentrate just on the structure and interactivity of your apps.
  • Architecture that is based on events. For improved dissociation between components, it employs an event-driven architecture. Every component that really can observe an application event or a component event could subscribe to it.
  • Design that is both responsive and reusable. Allows members to work more quickly with out-of-the-box parts working on both desktop and mobile platforms. Using components to build an app allows for parallel design, which enhances overall production efficiency. Components are wrapped, and its internal components are kept private, but its public form is available to component users. Such tight separation allows component authors to modify core details of the implementation while shielding component users from them.
  • Cross-benefits browsability’s, Apps are designed to be responsive and give a pleasant user experience. The Lightning Component framework is compatible with the most up-to-date browser technology, including  CSS3, HTML5, and tap events.
  • The user interface is stunning.
  • Visualization is compelled.
  • More user-interactive features.

Benefits of SLDS :

SLDS offers a variety of tools to construct applications that follow Lightning Experience’s concepts, design language, & methodologies. The following are some of the advantages that could create SLDS so beneficial:

  • By enhancing existing functionality or combining it with peripheral devices, it gives a seamless experience and simplified workflows.
  • Padding and margins are not over-enforced by default.
  • It is updated frequently. Till you’re utilizing the most recent edition of SLDS, the pages will be Lightning Experience compliant.
  • The CSS foundation contains accessibility.
  • It is compatible with various CSS frameworks, such as Bootstrap.

Using SLDS to Create Visualforce Pages

Visualforce pages which could mimic the appearance of the Salesforce application can be created with the Lightning Design System (SLDS). For using SLDS, you’ll need to make a few changes to the code and memorize a few points. Visualforce programming which employs SLDS, in the most portion, functions without a hitch.

In Visualforce, utilize SLDS Icons.

The actions, customized, doctype, basic, and utility logos are available in PNG and SVG (individual and sprite map) formats in the Lightning Design System (SLDS).

Using SLDS, construct a Visualforce page for the Salesforce Mobile App.

Now let us add a Visualforce page to the mobile navigation bar which shows your frequently accessed profiles and is designed using the Lightning Design System (SLDS).

SLDS for Responsive Page Design

Responsive design is indeed a website design technique that aims to create digital user interfaces that deliver the best visual experience possible, incorporating simple reading and navigation, on such a variety of devices.

Top 20 frequently asked Design Thinking Interview Questions !

Salesforce Training

Weekday / Weekend Batches

Conclusion:

Lightning Components are simple to generate, divide, and combine with some other parts, allowing you to make extremely customizable pages. Designers can expand lightning web components, encouraging different components to be created on top of existing ones, rather than constructing distinct components all across the app.  Salesforce’s lightning component architecture benefits from the usage of HTML, CSS, Java, and other internet techniques to provide a complex user experience. This article would be helpful in making you familiar with the Lightning components and their benefits to some extent.

Related articles :



Source link