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> | |
<require from="./combined.html"></require> | |
<!-- <div> | |
<md-range md-value.bind="rangeValue"></md-range> | |
<md-input md-label="put some text here" md-value.bind="rangeValue"></md-input><br /> | |
</div> | |
<div> | |
range: ${rangeValue} | |
</div>--> |
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
import { bindable, inlineView } from 'aurelia-framework'; | |
import * as ag from 'ag-grid'; | |
@inlineView(` | |
<template class="ag-fresh" style="align-self: stretch; flex-grow: 1; -ms-flex: 0 1 auto; flex: 1 1 100%;"> | |
</template> | |
`) | |
export class AgGrid { | |
@bindable columns; | |
@bindable rows; |
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
public class CustomActionResult : IHttpActionResult | |
{ | |
private HttpStatusCode _statusCode { get; set; } | |
private string _message { get; set; } | |
private Exception _exception { get; set; } | |
public CustomActionResult(HttpStatusCode statusCode, string errorMessage) : this(statusCode, errorMessage, null) | |
{} | |
public CustomActionResult(HttpStatusCode statusCode, string errorMessage, Exception exception) |
NewerOlder