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
/* Based on: https://gist.github.com/miwahall/7028640 */ | |
.ui-datepicker { | |
background-color: #fff; | |
border: 1px solid #66AFE9; | |
border-radius: 4px; | |
box-shadow: 0 0 8px rgba(102, 175, 233, .6); | |
display: none; | |
margin-top: 4px; | |
padding: 10px; |
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
<template> | |
<p><strong>OPEN Console window first, to see values when clicking the buttons</strong></p> | |
<p>What I would like (in some cases, I populate the values myself - generated by ASP.NET Razor HTML helper):</p> | |
<select value.bind="pageTypeId"> | |
<option value="0bedc229-2280-46fa-b157-bce4f1cddeaa">Standard Page</option> | |
</select> | |
<button click.delegate="showValue()">Show Value</button> | |
<p>This way forces user to select an option:</p> |