Last active
August 29, 2015 14:13
-
-
Save nicolas-despres/3c0beef776ad10b0eca9 to your computer and use it in GitHub Desktop.
designer
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
<link rel="import" href="../../salesforce/mobile-ui-elements/elements/force-sobject-collection/force-sobject-collection.html"> | |
<link rel="import" href="../../salesforce/mobile-ui-elements/elements/force-sobject/force-sobject.html"> | |
<link rel="import" href="../../salesforce/s1-elements/s1ListWithLabels.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#force_collection { | |
left: 610px; | |
top: 260px; | |
position: absolute; | |
} | |
#force_sobject { | |
left: 1220px; | |
top: 550px; | |
position: absolute; | |
} | |
#s1_list_with_labels { | |
width: 320px; | |
left: 510px; | |
top: 230px; | |
position: absolute; | |
} | |
</style> | |
<force-sobject-collection sobject="Account" query="Select id, Name from Account" querytype="soql" id="force_collection"></force-sobject-collection> | |
<force-sobject sobject="Account" id="force_sobject"></force-sobject> | |
<s1-list-with-labels collection="{{ $.design_host.account }}" id="s1_list_with_labels" class="Account"></s1-list-with-labels> | |
</template> | |
<script> | |
Polymer('my-element', { | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment