This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class FieldSetField | |
| { | |
| @AuraEnabled | |
| public Boolean dbRequired; | |
| @AuraEnabled | |
| public String apiName; | |
| @AuraEnabled | |
| public String label; | |
| @AuraEnabled | |
| public Boolean required; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Copyright (c), Andrew Fawcett | |
| * All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without modification, | |
| * are permitted provided that the following conditions are met: | |
| * | |
| * - Redistributions of source code must retain the above copyright notice, | |
| * this list of conditions and the following disclaimer. | |
| * - Redistributions in binary form must reproduce the above copyright notice, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <apex:page controller="SuperDuperSettingController"> | |
| <apex:pageMessages /> | |
| <apex:form > | |
| <apex:pageBlock > | |
| <apex:pageBlockSection > | |
| <apex:pageBlockSectionItem > | |
| <apex:outputLabel >Name</apex:outputLabel> | |
| <apex:inputText value="{!setting.Name}"/> | |
| </apex:pageBlockSectionItem> | |
| <apex:pageBlockSectionItem > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <apex:page > | |
| <!-- download the jstree from jstree.com and upload the dist directory as a static resource --> | |
| <link href="{!URLFOR($Resource.jsTree, 'themes/default/style.min.css')}" rel="stylesheet" /> | |
| <script src="{!URLFOR($Resource.jsTree, 'libs/jquery.js')}"></script> | |
| <script src="{!URLFOR($Resource.jsTree, 'jstree.min.js')}"></script> | |
| <script src="{!URLFOR($Resource.jsTree, 'jstree.min.js')}"></script> | |
| <!-- | |
| Change the remoteObjectModel name="Account and |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- TODO: Review Ant v1.8 local properties --> | |
| <project xmlns:sf="antlib:com.salesforce"> | |
| <!-- Download from Salesforce Tools page under Setup --> | |
| <typedef | |
| uri="antlib:com.salesforce" | |
| resource="com/salesforce/antlib.xml" | |
| classpath="${basedir}/lib/ant-salesforce.jar"/> | |
| <!-- Download from http://sourceforge.net/projects/ant-contrib/files/ant-contrib/1.0b3/ --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| font: 12px verdana; | |
| background-color: #5C87B2; | |
| } | |
| form { | |
| max-width: 400px; | |
| padding: 15px; | |
| background-color: white; | |
| } |