Grabbed latest release and installed. Added two css references to datatable and material css. Run successfully, but the bottom pagination icons are missed. Neither left or right, nor back to beginning or to end. What am I missing?
You need to specify them yourself. This can be done with e.g. [cssClasses]="iconsCss" Attribute in the template and
iconsCss = {
sortAscending: 'glyphicon glyphicon-chevron-down',
sortDescending: 'glyphicon glyphicon-chevron-up',
pagerLeftArrow: 'glyphicon glyphicon-chevron-left',
pagerRightArrow: 'glyphicon glyphicon-chevron-right',
pagerPrevious: 'glyphicon glyphicon-backward',
pagerNext: 'glyphicon glyphicon-forward'
};
in your code (this is an example if your using bootstrap).
Thank you!
@Thoma5 [cssClasses]="iconCss" must updated to [cssClasses]="iconsCss"
Most helpful comment
You need to specify them yourself. This can be done with e.g.
[cssClasses]="iconsCss"Attribute in the template andiconsCss = { sortAscending: 'glyphicon glyphicon-chevron-down', sortDescending: 'glyphicon glyphicon-chevron-up', pagerLeftArrow: 'glyphicon glyphicon-chevron-left', pagerRightArrow: 'glyphicon glyphicon-chevron-right', pagerPrevious: 'glyphicon glyphicon-backward', pagerNext: 'glyphicon glyphicon-forward' };in your code (this is an example if your using bootstrap).