Skip to content

Instantly share code, notes, and snippets.

@pradeepkumargali
Created December 22, 2014 08:46
Show Gist options
  • Save pradeepkumargali/e3abbd85653f8488cb98 to your computer and use it in GitHub Desktop.
Save pradeepkumargali/e3abbd85653f8488cb98 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../../salesforce/mobile-ui-elements/elements/force-ui-list/force-ui-list.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#force_ui_list {
left: 140px;
top: 10px;
position: absolute;
}
</style>
<force-ui-list sobject="Account" query="Select id, Name from Account" querytype="soql" id="force_ui_list" class="content"></force-ui-list>
</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