GithubHelp home page GithubHelp logo

Comments (12)

mm0hammadi avatar mm0hammadi commented on May 18, 2024 2

thats okay but there are some style issue :

  • The placeholder text must be center or right.
  • generally, the texts should be from right to left, for example, the text of columns ,headers and rows and the text of filters.
  • The actions column can be on the right side.
  • I can change the of all icons except pagination icons.i could not do it .

thank you

from material-react-table.

mm0hammadi avatar mm0hammadi commented on May 18, 2024 2

Screenshot from 2022-11-07 10-06-01

from material-react-table.

KevinVandy avatar KevinVandy commented on May 18, 2024 1

Did you follow the locale examples? https://www.material-react-table.com/docs/guides/localization

I personally have not tested RTL yet, but the pagination component comes directly from MUI, which should be correct as long as the Theme locale is set up correctly.

image

If there is still a problem, there might be a CSS class we can target to change the flex direction of these buttons.

from material-react-table.

mm0hammadi avatar mm0hammadi commented on May 18, 2024 1

yes , i did ,localization is okay .but i want to change Arrow Right Icon and Arrow Left Icon in pagination next and back page ?
How can do it ?

from material-react-table.

KevinVandy avatar KevinVandy commented on May 18, 2024 1

@mm0hammadi Would you be interested in contributing your persian lang locale translations? I'd like to debug this, but also we can add Persian as a built-in language for this library.

from material-react-table.

mm0hammadi avatar mm0hammadi commented on May 18, 2024

This is an image

from material-react-table.

KevinVandy avatar KevinVandy commented on May 18, 2024

@mm0hammadi If you ever have time and see this, would you be able to tell me how a right to left table should look like?

On my docs site, it looks like this

image

But would you expect the columns to be in the opposite direction? Are the headers and their buttons supposed to be reversed?

I can eventually make all these fixes in the library.

from material-react-table.

KevinVandy avatar KevinVandy commented on May 18, 2024

@mm0hammadi Did you add in your own styles to accomplish that? Or did the MaterialReactTable just work like that in your app?

from material-react-table.

mm0hammadi avatar mm0hammadi commented on May 18, 2024
yes, i added some style like this :
    muiTableContainerProps={{
          sx: {
            backgroundColor: background,
            borderRadius: '15px'
          }
        }}
        muiBottomToolbarProps={{
          sx: {
            height: '50px',
            backgroundColor: background,
            borderRadius: '15px'
          }
        }}

from material-react-table.

KevinVandy avatar KevinVandy commented on May 18, 2024

@mm0hammadi I guess I meant to ask whether or not you were adding in flex-reverse on your own or not to make everything right to left like in your screenshots, or if that was happening automatically for you.

from material-react-table.

mm0hammadi avatar mm0hammadi commented on May 18, 2024

no ,it was happening automatically for me

from material-react-table.

KevinVandy avatar KevinVandy commented on May 18, 2024

This is a solution:

<MaterialReactTable
    columns={columns}
    data={data}
    muiTablePaginationProps={{
      backIconButtonProps: {
        style: { transform: 'rotate(180deg)' },
      },
      nextIconButtonProps: {
        style: { transform: 'rotate(180deg)' },
      },
    }}
  />

It may get added to the library internally, though this seems more to be a bug with Mui's own TablePagination component.

from material-react-table.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.