Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tableview column offset and header height #37

Open
hoseyjoe opened this issue Sep 6, 2021 · 3 comments
Open

Tableview column offset and header height #37

hoseyjoe opened this issue Sep 6, 2021 · 3 comments

Comments

@hoseyjoe
Copy link

hoseyjoe commented Sep 6, 2021

  1. The header "Column C" is slightly taller than A & B? Not sure why but it is in html only raylib was fine.

  2. The second and third columns are offset to the left. Clicking the header fixes it? raylib was fine.

2021-09-05.21-06-50.mp4

Simplified.zip

@ianharrigan
Copy link
Member

Hmmm, yeah, that is a weird visual glitch... cant see why it would happen either... illl check it out

Cheers,
Ian

@hoseyjoe
Copy link
Author

hoseyjoe commented Sep 6, 2021

FYI: 1. column C is fixed by removing width="100%". The intent was for columns A, B take up the minimum space required and C to take up remaining space.

@hoseyjoe
Copy link
Author

hoseyjoe commented Sep 8, 2021

Changing column B to static width moves header height issue to column B

<column id="colA" text="Column A"  sortable="true" />
            <column id="colB" text="Column B" width="100" sortable="true"/>
            <column id="colC" text="Column C" width="100%" sortable="true"/>

image

If you do column A, no effect (column C is still weird)

<column id="colA" text="Column A"  sortable="true" />
           <column id="colB" text="Column B" width="100" sortable="true"/>
           <column id="colC" text="Column C" width="100%" sortable="true"/>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants