mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
fix translate
This commit is contained in:
@@ -15,22 +15,21 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import {Component} from 'angular2/core';
|
||||
import {TranslatePipe} from 'ng2-translate/ng2-translate';
|
||||
|
||||
import { Component } from 'angular2/core';
|
||||
import { AlfrescoPipeTranslate } from 'ng2-alfresco-core/services';
|
||||
import {
|
||||
ALFRESCO_DATATABLE_DIRECTIVES,
|
||||
ObjectDataTableAdapter, DataSorting
|
||||
} from 'ng2-alfresco-datatable/ng2-alfresco-datatable';
|
||||
|
||||
declare let __moduleName:string;
|
||||
declare let __moduleName: string;
|
||||
|
||||
@Component({
|
||||
moduleId: __moduleName,
|
||||
selector: 'datatable-demo',
|
||||
templateUrl: './datatable-demo.component.html',
|
||||
directives: [ALFRESCO_DATATABLE_DIRECTIVES],
|
||||
pipes: [TranslatePipe]
|
||||
pipes: [AlfrescoPipeTranslate]
|
||||
})
|
||||
export class DataTableDemoComponent {
|
||||
data: ObjectDataTableAdapter;
|
||||
@@ -45,19 +44,19 @@ export class DataTableDemoComponent {
|
||||
|
||||
this.data = new ObjectDataTableAdapter(
|
||||
[
|
||||
{ id: 1, name: 'Name 1', createdBy: createdBy, icon: 'material-icons://folder_open' },
|
||||
{ id: 2, name: 'Name 2', createdBy: createdBy, icon: 'material-icons://accessibility' },
|
||||
{ id: 3, name: 'Name 3', createdBy: createdBy, icon: 'material-icons://alarm' },
|
||||
{ id: 4, name: 'Image 1', createdBy: createdBy, icon: imageUrl }
|
||||
{id: 1, name: 'Name 1', createdBy: createdBy, icon: 'material-icons://folder_open'},
|
||||
{id: 2, name: 'Name 2', createdBy: createdBy, icon: 'material-icons://accessibility'},
|
||||
{id: 3, name: 'Name 3', createdBy: createdBy, icon: 'material-icons://alarm'},
|
||||
{id: 4, name: 'Image 1', createdBy: createdBy, icon: imageUrl}
|
||||
],
|
||||
[
|
||||
{ type: 'image', key: 'icon', title: '', srTitle: 'Thumbnail' },
|
||||
{ type: 'text', key: 'id', title: 'Id', sortable: true},
|
||||
{ type: 'text', key: 'name', title: 'Name', cssClass: 'full-width name-column', sortable: true },
|
||||
{ type: 'text', key: 'createdBy.name', title: 'Created By', sortable: true }
|
||||
{type: 'image', key: 'icon', title: '', srTitle: 'Thumbnail'},
|
||||
{type: 'text', key: 'id', title: 'Id', sortable: true},
|
||||
{type: 'text', key: 'name', title: 'Name', cssClass: 'full-width name-column', sortable: true},
|
||||
{type: 'text', key: 'createdBy.name', title: 'Created By', sortable: true}
|
||||
]
|
||||
);
|
||||
|
||||
|
||||
this.data.setSorting(new DataSorting('name', 'asc'));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user