You need to sign in to do that
Don't have an account?

How To Get SDLS Components Working?!?!
Im wondering how I go about using the SLDS components, I cant for the life of me figure it out and non of the online guides are helping me out. For example the combo box and picklist require <aura:component> but I have no clue how to use them or refrence them.
This is the page:-

The Visual Force Code is in the comments:-
Here is what im trying to do:-
https://developer.salesforce.com/docs/component-library/bundle/lightning:combobox/example
https://www.lightningdesignsystem.com/components/combobox/#site-main-content
But it I cant get it working.
Any help or explanation on how its done will be much appreciated thanks.
This is the page:-
The Visual Force Code is in the comments:-
Here is what im trying to do:-
https://developer.salesforce.com/docs/component-library/bundle/lightning:combobox/example
https://www.lightningdesignsystem.com/components/combobox/#site-main-content
But it I cant get it working.
Any help or explanation on how its done will be much appreciated thanks.
I believed that you are using Lightning but you are using Classics with Visualforce page and you cannot use easily the SLDS for dynamic components.
In VFP, it is very difficult to change the standard popups for the dates and the lookup fields for instance.
You must keep the standard <apex:inputField> or use a complicated component like UTIL_InputField.component (https://github.com/SalesforceFoundation/Cumulus/blob/master/src/components/UTIL_InputField.component).
Cumulus is an open-source of Salesforce where they have used the SLDS charter included for the VFP:
https://github.com/SalesforceFoundation/Cumulus/blob/master/src/pages/HH_ManageHH.page
https://github.com/SalesforceFoundation/Cumulus/blob/master/src/pages/CON_ContactMerge.page
https://github.com/SalesforceFoundation/Cumulus/blob/master/src/components/UTIL_InputField.component
As you can see, it is very complicated because you need to hack with Javascript code the standard dynamic components;
All Answers
What is the issue here? I can see some SLDS applied in the image you shared.
I believed that you are using Lightning but you are using Classics with Visualforce page and you cannot use easily the SLDS for dynamic components.
In VFP, it is very difficult to change the standard popups for the dates and the lookup fields for instance.
You must keep the standard <apex:inputField> or use a complicated component like UTIL_InputField.component (https://github.com/SalesforceFoundation/Cumulus/blob/master/src/components/UTIL_InputField.component).
Cumulus is an open-source of Salesforce where they have used the SLDS charter included for the VFP:
https://github.com/SalesforceFoundation/Cumulus/blob/master/src/pages/HH_ManageHH.page
https://github.com/SalesforceFoundation/Cumulus/blob/master/src/pages/CON_ContactMerge.page
https://github.com/SalesforceFoundation/Cumulus/blob/master/src/components/UTIL_InputField.component
As you can see, it is very complicated because you need to hack with Javascript code the standard dynamic components;