Created
June 13, 2014 18:29
-
-
Save sjmiles/bba040318c07df014a33 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="../paper-form/paper-form.html"> | |
<link rel="import" href="../paper-form/paper-fields.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#paper_form { | |
left: 270px; | |
top: 200px; | |
position: absolute; | |
width: 700px; | |
height: 480px; | |
} | |
</style> | |
<paper-form id="paper_form" segment vertical layout> | |
<paper-row id="paper_row" horizontal layout center wrap novanish> | |
<poly-field name="Field Name" id="poly_field" horizontal layout field one flex> | |
<input-field name="{{ name }}" value="{{ value }}" meta="{{ meta }}" editvalue="{{ editValue }}" errortext="{{ errorText }}" validator="{{ validator }}" invalidated="{{ invalidated }}" id="input_field" kind="input-field" layout horizontal center field></input-field> | |
</poly-field> | |
</paper-row> | |
</paper-form> | |
</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