We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
there is no way to sort data when it is more then one level deep. For Example:
`<table class="table table-striped table-bordered table-hover" [mfData]="customerList" #mf="mfDataTable" [mfRowsOnPage]="10" cellspacing="0" width="100%"> First Name Last Name Phone Number Postal Code Number Of Vehicles Subscription Type Subscription Date <tr *ngFor="let user of mf.data"> <a [routerLink]="['/customers', user.id]">{{user.firstName}} {{user.lastName}} {{user.mobilePhoneNumber}} {{user.addresses.HOME.postalCode}} {{user.vehicles.length}} {{user.subscription.name}} {{user.subscriptionDate}}
i cannot sort by user.subscription.name or user.addresses.HOME.postalCode
The text was updated successfully, but these errors were encountered:
Fixed in v0.5.1
Sorry, something went wrong.
No branches or pull requests
there is no way to sort data when it is more then one level deep. For Example:
`<table class="table table-striped table-bordered table-hover" [mfData]="customerList" #mf="mfDataTable" [mfRowsOnPage]="10" cellspacing="0" width="100%">
`First Name
Last Name
Phone Number
Postal Code
Number Of Vehicles
Subscription Type
Subscription Date
<tr *ngFor="let user of mf.data">
<a [routerLink]="['/customers', user.id]">{{user.firstName}}
{{user.lastName}}
{{user.mobilePhoneNumber}}
{{user.addresses.HOME.postalCode}}
{{user.vehicles.length}}
{{user.subscription.name}}
{{user.subscriptionDate}}
i cannot sort by user.subscription.name or user.addresses.HOME.postalCode
The text was updated successfully, but these errors were encountered: