
Responsive Visualforce pages demo.
Below is the link to the demo, click on 'Learn More' to see the second page. http://renderingfielddemo-developer-edition.eu5.force.com/Test_Login2 Code. <apex:page showHeader="false" sidebar="false" standardController="Resource__c" standardStylesheets="false" docType="html-5.0" applyHTMLTag="false"> <html lang="en"> <head> <meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1
Test Class (100% code coverage) for Rest API web service class
In this post, I'll be posting a sample test class I wrote that has all CRUD operations and includes attachements in POST. It's built on a custom object Individual_KYC__c that has all the fields. The class. @RestResource(urlMapping='/Demo/IndividualKYCManager/*')
global with sharing class IndividualKYCManager {
global class KYCRequest {
public String name {get; set;}
public String email {get; set;}
public String idnum {get; set;}
pub