How to hide lines and borders in pageBlock tag in Visualforce?
Sample Code: Visualforce page: <apex:page standardController="Account" sidebar="false"> <style> .bPageBlock .pbBody .dataCol { border:0px; } .bPageBlock .pbBody .labelCol { ....
Sample Code: Visualforce page: <apex:page standardController="Account" sidebar="false"> <style> .bPageBlock .pbBody .dataCol { border:0px; } .bPageBlock .pbBody .labelCol { ....
Remote Site Settings: Visualforce Page: <apex:page controller="RESTAPIXMLResponseController"> <apex:form> <apex:pageBlock> <apex:pageBlockSection> <apex:pageBlockSectionItem>Customer No: <apex:inputText value="{!strCustomerNo}"/></apex:pageBlockSectionItem> </apex:pageBlockSection> <apex:pageBlockButtons location="bottom"> <apex:commandButton value="Fetch" action="{!fetchAPI}"/> </apex:pageBlockButtons> </apex:pageBlock> <apex:pageBlock> <apex:repeat value="{!mapCustomer}" var="c"> {!c} - {!mapCustomer[c]}<br/> </apex:repeat> ....
Remote Site Settings: Visualforce Page: <apex:page controller="RESTAPIJSONResponseController"> <apex:form> <apex:pageBlock> <apex:pageBlockButtons location="bottom"> <apex:commandButton value="Fetch" action="{!fetchAPI}"/> </apex:pageBlockButtons> </apex:pageBlock> <apex:pageblock> <apex:pageBlockSection> <apex:pageBlockTable value="{!listWrapper}" var="obj"> <apex:column value="{!obj.id}" headerValue="Id"/> <apex:column value="{!obj.login}" headerValue="Login"/> <apex:column value="{!obj.url}" headerValue="URL"/> ....
Custom permissions let you define access checks that can be assigned to users via permission sets or profiles, similar to how you assign user permissions and other access settings. For ....
Sample Code: Visualforce page: <apex:page controller="Sample"> <apex:form > <apex:inputField value="{!objEmp.Approval_Status__c}"/> <br/><br/><br/> <apex:inputField value="{!objEmp1.Approval_Status__c}"/> </apex:form> </apex:page> Apex Class: public with sharing class Sample { public Employee__c objEmp {get;set;} public Employee__c objEmp1 ....
The Salesforce console is designed for users in fast-paced environments who need to find, update, and create records in Salesforce quickly. The Salesforce Console Integration Toolkit provides you with programmatic ....
Sample Apex Class: public class Book implements Comparable { public String BookTitle ; public String Author; public Double Price ; public Date ....
Sample Code: Visualforce Page: <apex:page controller="Sample"> <apex:form > <apex:pageBlock > <apex:pageBlockSection > ....
{!$ObjectType.Lead.Accessible} is used to check object level security within a Visualforce page in Salesforce Sample Visualforce Code: <apex:page> {!$ObjectType.Lead.Accessible} </apex:page> Cheers!!!
By default, chart colors match those of the built-in reporting and analytics charts so that you can create visually-consistent dashboards. If you want to create your own color scheme you ....