AngularJS Material: Material Design component library for AngularJS (1.x). Use angular/material2 channel for Angular Material (v2+).
Splaktar on master
fix(toast): apply theming corre… perf(icon): better handling of … fix(list): copy ng-show, ng-hid… and 49 more (compare)
Splaktar on v1.1.0-rc.5
release: version 1.1.0-rc.5 (compare)
Splaktar on master
feat(panel): initial implementa… update(panel): promise logic im… update(panel): add and remove p… and 44 more (compare)
Splaktar on v1.1.0-rc4
release: version 1.1.0-rc4 (compare)
Splaktar on v1.1.0-rc3
release: version 1.1.0-rc3 (compare)
Splaktar on es6-tutorial
Prepare clean start Remove bow… install angular-material And i… working version of starter-app and 19 more (compare)
Splaktar on master
Tutorial Readme updates Updates for Tutorial #2 Update README with tutorial ste… and 56 more (compare)
Splaktar on fixBlurryRightNavIe11
fix(sidenav): rightNav button a… (compare)
Splaktar on master
fix(dialog): don't clobber md-d… update version number in packag… update(changelog): sort so 1.1.… and 1 more (compare)
Splaktar on fixSideNavDemo
docs(sidenav): leftNav text isn… (compare)
Splaktar on fixSideNavDemo
docs(sidenav): invalid `md-whit… (compare)
Splaktar on master
update(changelog): add missing … fix(toolbar): remove transition… fix(tests): Cleans up the DOM a… and 2 more (compare)
Splaktar on master
update(docs): improve docs for … update(docs): renamed `md-text-… fix(list): clickable list-items… and 71 more (compare)
Splaktar on improveExtendThemeDoc
update(docs): improve docs for … (compare)
Splaktar on improveExtendThemeDocs
update(docs): improve docs for … (compare)
Splaktar on updateThemingDocs
update(docs): renamed `md-text-… (compare)
Splaktar on master
fix(demo, codepen): use secure … fix(build, layout): remove depr… update(build): remove stale bow… and 72 more (compare)
Splaktar on v1.1.0-rc2
release: version 1.1.0-rc2 (compare)
Splaktar on master
fix(checkbox): pointer events d… update(tests): remove disabled/… fix(datepicker): enable scrolli… and 20 more (compare)
Splaktar on v1.0.6
Revert "fix(select): made selec… update(layout): add layout-nowr… fix(whiteframe): update breakpo… and 57 more (compare)
I've been trying to set the locale time to parse ISO string to local timestamp based on navigator.language
so when I change the browser language preferences it reflects the date format in proper locale, but this doesn't seem to work with time part of the ISO string.
let sampleDate = new Date('2018-11-29T09:54:46.863207Z').toLocaleString(navigator.language);
Has anyone here experienced this before?
<li *ngIf="clientsSize > 1" class="menu">
<a href="#exampledropdownDropdown" aria-expanded="false" data-toggle="collapse">
<i class="far fa-file-alt"></i>My Lists </a>
<ul id="exampledropdownDropdown" class="collapse list-unstyled">
<li *ngFor="let client of clients" >
<a (click)="getClientCases(client.id)" aria-expanded="false" style="cursor: pointer">
{{client.clientName}}
</a>
</li>
</ul>
</li>
mat-expansion-panel
sitting inside of mat-accordion
. I'm capturing them through @ViewChildred(MatExpansionPanel) groups: QueryList<MatExpansionPanel>
. When something happens , need to get the reference to the element that is a specific panel within that list of panels.
QueryList
would work, but I don't see a way to get that.
QueryList
? So, I am still kind of wondering if there is a way to attach some ID or some data to the panel that I can later pull out using QueryList
and compare if that's the one I need. Any suggestions?
Namespace ''angular'.material' has no exported member 'IDialogService'.
and a bunch of others, after already having material 1.1.10 running fine, but upgrading angular. Is there some new way we're supposed to reference dialogservice ?
<div class="form-group">
<span>Please confirm that you have suitable experience and knowledge to review this article:</span>
<div class="radio">
<label>Yes
<input type="radio" name="content" [(ngModel)]="review.content"
*ngIf="editUserDetails[0].content=='Yes'" value="{{review.content}}" [checked]="true">
<input type="radio" name="content" [(ngModel)]="review.content"
*ngIf="editUserDetails[0].content=='No'" value="{{review.content}}" [checked]="false">
</label>
<label>No
<input type="radio" name="content" [(ngModel)]="review.content"
*ngIf="editUserDetails[0].content=='No'" value="{{review.content}}" [checked]="true">
<input type="radio" name="content" [(ngModel)]="review.content"
*ngIf="editUserDetails[0].content=='Yes'" value="{{review.content}}" [checked]="false">
</label>
</div>
</div>
Hi All,
I have a component the below template in a separ
import { Component } from '@angular/core';
@Component( {
selector: 'jhi-search-component',
template: `
<form class="form-inline" (ngSubmit)="search()" >
<div >
<span class="col-sm-4">Search By</span>
<select class="form-control col-sm-4" [(ngModel)]="propkey" name="propkey">
<option value=" "></option>
<option *ngFor="let prop of entity | keyvalue"> {{prop.value}}</option>
</select>
<select class="form-control col-sm-4 " [(ngModel)]="operation" name="operation" >
<option value='='>=</option>
<option value='<'><</option>
<option value='>'>></option>
</select>
<input class="form-control mr-sm-2 col-sm-4" type="search" placeholder="Search" aria-label="Search" [(ngModel)]="searchvalue" name="searchvalue">
<button class="btn btn-primary float-right" type="submit">
<fa-icon [icon]="'search'"></fa-icon>
</button>
</div>
</form>`
} )
export abstract class SearchComponent {
searchvalue: any;
operation: any;
propkey: any;
entity: any[];
abstract search();
}
and i have addded the component in another component as <jhi-search-component></jhi-search-component>
I would like to set the this properties in another component that acutally uses it ,in the component that actually displays this i set the this class properties ,
but still it is not reflected in the screen
As this template uses ngModel my expectation is that the two way is enabled and that it shoud detect the changes and display.
But it didnt
Also the search inspite of the component implemeting ..it didnt execute it.
an anyone suggest me what is wrong..
All these properties will have their values only after ngOnInit of the component actually using this.
Uncaught Error: Template parse errors:
Can't bind to 'formControl' since it isn't a known property of 'input'. ("example-full-width">
<input type="text" placeholder="Pick one" aria-label="Number" matInput [ERROR ->][formControl]="myControl"
[matAutocomplete]="auto">
<mat-autocomplete #auto="matA"): ng:///CourseModule/AddTopicComponent.html@2:79