This file contains 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 standardController="Account" extensions="AddAttachmentExt"> | |
<apex:includeScript value="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js"/> | |
<apex:form> | |
<apex:sectionHeader title="{!Account.name} Attachments" /> | |
<apex:pageBlock mode="maindetail"> | |
<apex:pageBlockSection title="Existing Attachments" columns="1"> | |
<apex:PageBlockTable value="{!Account.Attachments}" var="attach"> | |
<apex:column value="{!attach.Name}" /> | |
<apex:column headerValue="Length (bytes)" value="{!attach.BodyLength}" /> | |
<apex:column headerValue="Owner" value="{!attach.Owner.Name}" /> |
This file contains 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 with sharing class AddAttachmentExt | |
{ | |
private ApexPages.StandardController stdCtrl; | |
public Attachment att {get; set;} | |
public AddAttachmentExt(ApexPages.StandardController inStd) | |
{ | |
stdCtrl=inStd; | |
att=new Attachment(); | |
} |
This file contains 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
<link rel="import" href="../paper-ripple/paper-ripple.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
This file contains 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
<link rel="import" href="../paper-checkbox/paper-checkbox.html"> | |
<link rel="import" href="../google-map/google-map-directions.html"> | |
<link rel="import" href="../google-map/google-map.html"> | |
<link rel="import" href="../speech-mic/speech-mic.html"> | |
<link rel="import" href="../smoothie-chart/smoothie-chart.html"> | |
<link rel="import" href="../topeka-elements/topeka-resources.html"> | |
<link rel="import" href="../topeka-elements/topeka-leaderboard.html"> | |
<polymer-element name="my-element"> |