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
<select class="title required" id="WebKontaktTelefon2:AkademieSiteTemplate:WebmainHeader2:WebmainHeader2Cmp:WebKontaktTelefon:WebKontaktTelefonCmp:form:salutation" name="WebKontaktTelefon2:AkademieSiteTemplate:WebmainHeader2:WebmainHeader2Cmp:WebKontaktTelefon:WebKontaktTelefonCmp:form:salutation"><option value="">– Keine –</option><option value="Herr">Herr</option> | |
<option value="Frau">Frau</option> | |
</select> |
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
<!doctype html> | |
<html> | |
<head> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
<script type="text/javascript"> | |
var controlCheckboxes = function() | |
{ | |
if(jQuery(this).is(':checked')) |
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 List<TrialManagement__c> getSelectedRecords() | |
{ | |
if(checked != null && checked) | |
{ | |
return new List<TrialManagement__c>{record}; | |
} | |
return null; | |
} |
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 static Map<String, ID>recordType{ get { | |
if( recordType== null ) | |
{ | |
recordType = new Map<String, Id>(); | |
for(RecordType r : [Select r.SobjectType, r.Id, r.DeveloperName From RecordType r]) | |
{ | |
recordType.put(r.SobjectType+':'+r.DeveloperName, r.id); | |
} | |
} | |
return recordType; |
NewerOlder