5

Is there a possibility to change this text:

MudTablePager

to something like 'Elemente pro Seite' for example?

I changed the InfoFormat but i can't find an option to change the left side text?

Code:

<PagerContent>
    <MudTablePager InfoFormat="@infoFormat"/>
</PagerContent>

@code {
      private string infoFormat = "{first_item}-{last_item} von {all_items}";
}

Thanks in advance for your help.

CeOnSql
  • 2,615
  • 1
  • 16
  • 38

1 Answers1

11

There is a property RowsPerPageString:

<MudTablePager PageSizeOptions="new int[] { 20, 50}" RowsPerPageString="your-own-text" />
Martin Holý
  • 176
  • 1
  • 4