Hi,
i have a little problem.
I'm using the ej-grid with angular2 but i don't want the pager, i have tried to put [allowPaging]="false" or just don't put the parameter but it still here.
How can i do to delete it?
Here is an exemple of my code :
<ej-grid [allowPaging]="false" [allowSorting]="true" [allowSearching]="true" [dataSource]="matriculesFormatted" [locale]="myLocale">
<e-columns>
<e-column field="id" headerText="N°" textAlign="CENTER" width="100"></e-column>
<e-column field="licensePlateNumber" headerText="Immatriculation" textAlign="CENTER"></e-column>
</e-columns>
</ej-grid>