Skip to content

Instantly share code, notes, and snippets.

/* 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;
@gordon-matt
gordon-matt / app.html
Created May 29, 2018 04:33 — forked from 3cp/app.html
select init
<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>