Skip to content

Instantly share code, notes, and snippets.

@siddharatha
Last active August 29, 2015 14:09
Show Gist options
  • Save siddharatha/f3e4ff391ea01675faf0 to your computer and use it in GitHub Desktop.
Save siddharatha/f3e4ff391ea01675faf0 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../../salesforce/mobile-ui-elements/elements/force-ui-app/force-ui-app.html">
<link rel="import" href="../../salesforce/s1-elements/s1SearchWidgetWithsortfilter.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#s1_mdplauncher_default {
width: 320px;
left: 1120px;
top: 540px;
}
#force_ui_app {
overflow-y: scroll;
left: 10px;
top: 10px;
position: absolute;
}
#s1_search_widget_withsortfilter {
width: 320px;
}
</style>
<force-ui-app id="force_ui_app" class="splitview">
<s1-search-widget-withsortfilter id="s1_search_widget_withsortfilter"></s1-search-widget-withsortfilter>
</force-ui-app>
</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