-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
7Questions
-
5Replies
combobox dropdown width issue
Hi as shown in the below image how can I adjust the width of the dropdown accordinding to the above selected value field
Thanks
Thanks
- Maverick26
- June 12, 2022
- Like
- 0
- Continue reading or reply
HelpText Alignment issue in LWC
In LWC the radio button has a helptext which is displayed on clicking the the button. The alignment of the helptext is not correctly placed on clicking on the radio button in newer versions of chrome and edge (chrome ver:- 102.0.5005.63) any help would be much appriciated.
Thanks.
Thanks.
- Maverick26
- June 01, 2022
- Like
- 0
- Continue reading or reply
How to process bulkification of records.
Hi Team,
How to process bulkification of records(Eg:- 50,000 at once ) in Integration Procedures (IP) in velocity
I am actually migrrating data from a external system to salesforce, for this I have created a flow in which we are calling Integration Procedures(IP) through APEX action
For this I have to pull let's say 50,000 records at once without hitting Governer Limits I want to know how can we process records in bulk more that 200 records.
Thanks you,
Kiran.
How to process bulkification of records(Eg:- 50,000 at once ) in Integration Procedures (IP) in velocity
I am actually migrrating data from a external system to salesforce, for this I have created a flow in which we are calling Integration Procedures(IP) through APEX action
For this I have to pull let's say 50,000 records at once without hitting Governer Limits I want to know how can we process records in bulk more that 200 records.
Thanks you,
Kiran.
- Maverick26
- May 02, 2022
- Like
- 0
- Continue reading or reply
Name fields should not allow: 0-9^#*@!_()$%&+>< ( ) | validation rules
Hi Developers,
How can I restrict a string field to not allow 0-9^#*@!_()$%&+>< ( ) |
Phone should allows only numbers and hyphen
Thanks in Advance.
How can I restrict a string field to not allow 0-9^#*@!_()$%&+>< ( ) |
Phone should allows only numbers and hyphen
Thanks in Advance.
- Maverick26
- April 25, 2022
- Like
- 0
- Continue reading or reply
- Maverick26
- February 17, 2022
- Like
- 0
- Continue reading or reply
combobox dropdown width issue
Hi as shown in the below image how can I adjust the width of the dropdown accordinding to the above selected value field
Thanks
Thanks
- Maverick26
- June 12, 2022
- Like
- 0
- Continue reading or reply
HelpText Alignment issue in LWC
In LWC the radio button has a helptext which is displayed on clicking the the button. The alignment of the helptext is not correctly placed on clicking on the radio button in newer versions of chrome and edge (chrome ver:- 102.0.5005.63) any help would be much appriciated.
Thanks.
Thanks.
- Maverick26
- June 01, 2022
- Like
- 0
- Continue reading or reply
- Maverick26
- February 17, 2022
- Like
- 0
- Continue reading or reply
Visualforce login flow error - Can't Display Page
I am trying to implement an intermidiary page which will display after login but before landing on the home page. I am using visualforce login flow for that. I tried the example provided in salesforce help page
https://dreamevent.secure.force.com/articleView?id=security_login_flow_visualforce.htm&type=0
However when I login with the user, it shows the following error and the user is stuck here itself. I do not understand what wrong I am doing:
Here are the code snippets:
VF Page
Controller
https://dreamevent.secure.force.com/articleView?id=security_login_flow_visualforce.htm&type=0
However when I login with the user, it shows the following error and the user is stuck here itself. I do not understand what wrong I am doing:
Here are the code snippets:
VF Page
<apex:page showHeader="false" controller="VFLoginFlowController"> <h1>You are in VF Login Flow</h1> <apex:form > <apex:commandButton action="{!FinishLoginFlowHome}" value="Finish and Go to Home"/> <apex:commandButton action="{!FinishLoginFlowStartUrl}" value="Finish and Go to StartUrl"/> </apex:form> </apex:page>
Controller
public class VFLoginFlowController { public PageReference FinishLoginFlowStartUrl() { //do stuff //finish the login flow and send you to the startUrl (account page in this case) return Auth.SessionManagement.finishLoginFlow('/001'); } public PageReference FinishLoginFlowHome() { //do stuff //finish the login flow and send you the default homepage return Auth.SessionManagement.finishLoginFlow(); } }
- Snehil Karn
- March 15, 2019
- Like
- 0
- Continue reading or reply