
ildudkin
Member-
nancy and
Shubham are now connected 4 years ago
-
Piyush posted a new blog 5 years ago
How to Display a Bar Chart using Visualforce and Apex of Daily API Request in Salesforce Org?Introduction Visualforce is a web development framework that enables developers to build sophisticated, custom user interfaces for mobile and desktop apps that can be hosted on the Lightning Platform. You can…
-
Piyush replied to the discussion How to pass records on onclick for apex checkbox to controller in Salesforce vf page? in the forum Salesforce® Discussions 5 years ago
Reply to How to pass records on onclick for apex checkbox to controller in Salesforce vf page?
Hi Deepak,
create a variable in your controller
public String selectedLetterID {get;set;}
Then set it with the param tag.
<apex:inputfield value="{!letter.Suppressed__c}" id="suppressBox" onclick="SupressLetter('{!letter.Id}');return false;"/> <apex:actionFunction name="SupressLetter" action="{!suppressLetter}" rerender="out"> …
-
Piyush replied to the discussion How to create a output fields side by side in Salesforce vf page? in the forum Salesforce® Discussions 5 years ago
Reply to How to create a output fields side by side in Salesforce vf page?
Hi,
Have a look to the following code for create a output fields side by side in Salesforce vf page:-
<apex:panelGrid columns="3" style="table-layout: fixed" width="100%"> <!-- column 1 --> <apex:pageBlockSection…
-
Piyush replied to the discussion How to show four columns for output field in one page section in the Salesforce vf page? in the forum Salesforce® Discussions 5 years ago
Reply to How to show four columns for output field in one page section in the Salesforce vf page?
Hi Deepak,
check the code and take help from this code:-
https://salesforce.stackexchange.com/questions/34385/pageblocksection-with-4-columns
<apex:page standardController="Account"> <apex:form > <table width="100%"> <tr> <td> <apex:outputLabel value="Field1"…
-
Piyush replied to the discussion How to set Debug logs for a community User in salesforce? in the forum Salesforce® Discussions 5 years ago
Reply to How to set Debug logs for a community User in salesforce?
Hi Prachi,
Have a look to the following UrL to set Debug logs for a community User in salesforce:-
http://www.infallibletechie.com/2017/09/how-to-set-debug-log-for-community.html
-
Piyush replied to the discussion How to insert hierarchy custom setting record in Salesforce? in the forum Salesforce® Discussions 5 years ago
Reply to How to insert hierarchy custom setting record in Salesforce?
Hi,
Go to Setup >> Develop >> Custom Settings. Click Manage next to one of the hierarchy type custom settings. Click New at the top of the page to add a new default. Click Save and the error message occurs.
-
Piyush replied to the discussion Is there a way to check a debug statement belongs to which class in Salesforce? in the forum Salesforce® Discussions 5 years ago
Reply to Is there a way to check a debug statement belongs to which class in Salesforce?
Hi Deepak,
Check the following URL for heck a debug statement belongs to which class in Salesforce:-
-
Piyush replied to the discussion How to make actions from notifications in Salesforce? in the forum Salesforce® Discussions 5 years ago
Reply to How to make actions from notifications in Salesforce?
Hi,
Make sure that the custom notification type you want to call from your process exists. If not, create the notification type. Drag a Core Action element onto the canvas. In the Core Action field, enter Notifications , and select Send Custom Notification.
-
Piyush started the discussion How many settings changes can you view directly within Setup in salesforce? in the forum Salesforce® Discussions 5 years ago
How many settings changes can you view directly within Setup in salesforce?
How many settings changes can you view directly within Setup in salesforce?
-
Piyush started the discussion How many days worth of changes to settings can you download in Salesforce? in the forum Salesforce® Discussions 5 years ago
How many days worth of changes to settings can you download in Salesforce?
How many days worth of changes to settings can you download?
-
Piyush started the discussion What feature would you use to track changes to settings in Salesforce? in the forum Salesforce® Discussions 5 years ago
What feature would you use to track changes to settings in Salesforce?
What feature would you use to track changes to settings in Salesforce?
-
Piyush posted a new blog 5 years ago
How to Add or Delete Dynamic Rows in Salesforce using Lightning Web ComponentIntroduction: Lightning includes the Lightning Component Framework and some exciting tools for developers. Lightning makes it easier to build responsive applications for any device. Lightning includes…
-
Piyush started the discussion How will the Visualforce page will stop working on Lightning UI in Salesforce? in the forum Salesforce® Discussions 5 years ago
How will the Visualforce page will stop working on Lightning UI in Salesforce?
Will Visual Force page will stop working on Lightning UI in salesforce?
-
Piyush started the discussion Can we include external Library into Lightning Component in Salesforce? in the forum Salesforce® Discussions 5 years ago
Can we include external Library into Lightning Component in Salesforce?
Can we include external Library into Lightning Component in salesforce?
-
Piyush started the discussion When we can not use LDS in Lightning Component in salesforce? in the forum Salesforce® Discussions 5 years ago
When we can not use LDS in Lightning Component in salesforce?
When we can not use LDS in Lightning Component in salesforce?
-
Piyush replied to the discussion When we should use aura:handler in Salesforce lightning component ? in the forum Salesforce® Discussions 5 years ago
Reply to When we should use aura:handler in Salesforce lightning component ?
Hi,
In lightning component <aura:handler... > is used for handle standard and custom events
we can create our custom lightning event and also use standard events, standard lightning event is automatically fired when related event is fire
standard event like -:
1. aura:valueInit - : Indicates that an app or component has been initialized.
This… Read more -
Piyush replied to the discussion What is the use of aura:waiting in Salesforce lightning? in the forum Salesforce® Discussions 5 years ago
Reply to What is the use of aura:waiting in Salesforce lightning?
Hi,
aura:waiting : This event is automatically fired when a server-side (apex) action is added using $A. enqueueAction() , or when it's expecting a response from an Apex controller. it's always fired before aura:doneWaiting event. aura:waiting event is handled by a client-side (javaScript)controller.
-
Piyush replied to the discussion What is the use of aura:doneWaiting in Salesforce lightning component? in the forum Salesforce® Discussions 5 years ago
Reply to What is the use of aura:doneWaiting in Salesforce lightning component?
Hi,
This event indicates that the app is done waiting for response to a server request. This event is fired after aura:waiting. This event is automatically fired if no more response from the server is expected. This event is also handled by a client-side controller.
-
Piyush replied to the discussion How to create a Community User with a Trigger in Salesforce? in the forum Salesforce® Discussions 5 years ago
Reply to How to create a Community User with a Trigger in Salesforce?
Hi,
Have a look to the below code:-
trigger UserFromContact on Contact (after insert) { set<ID> conids = new set<ID>(); for(Contact c : trigger.new){ if(c.accountid != Null && c.recordtype ='Customer_Contact'){ conids.add(c.id); } } List<contact> conlist = [select id,email,firstName,lastname,accountId…
- Load More