specifying data grid layout at different resolution?

  • Thread starter Thread starter Elhanan
  • Start date Start date
E

Elhanan

hi...

i have a scrollable data grid with which is sortable via table control
above that datagrid (i took it from an article somwhere)..

trouble is i can't seem to set the columns width for the table control
to match the ones on datagrid, when i almost did, changing the
resolution messed everything up. (i'm % width)

is there a way to have the fonts become smaller according to the
resolution?

the table control is inside a div but it must around 2$ small in width
then the data grid to account for the scroll bars.
 
Elhanan said:
hi...

i have a scrollable data grid with which is sortable via table control
above that datagrid (i took it from an article somwhere)..

trouble is i can't seem to set the columns width for the table control
to match the ones on datagrid, when i almost did, changing the
resolution messed everything up. (i'm % width)

is there a way to have the fonts become smaller according to the
resolution?

the table control is inside a div but it must around 2$ small in width
then the data grid to account for the scroll bars.

Fonts become smaller or bigger according to the screen's DPI, if you
specify their size in real-world units (cm, pt, ...). But your problem
is about the browser window's size, not resolution or dpi.

Maybe you should give the table/datagrid a fixed width?
 
Back
Top