Page 1 of 1

fluid width tables

Posted: 2012-11-28 21:55
by ianraba
Hi
has anyone implemented fluid width tables for their mxkollection lists?

Re: fluid width tables

Posted: 2012-11-29 14:38
by Fred
Not so sure if it will actually work because apart from defining the actual width of a cell

Code: Select all

<style type="text/css">
  /* NeXTensio3 List row settings */
  .KT_col_id {width:21px; overflow:hidden;}
  .KT_col_access_name {width:140px; overflow:hidden;}
  .KT_col_available_op {width:35px; overflow:hidden;}
  .KT_col_number_of_users {width:35px; overflow:hidden;}
</style>
you also define the actual number of characters to be displayed

Code: Select all

<?php echo KT_FormatForList($row_rsmember_type_and_access1['access_name'], 20); ?>
I suppose you can used % in the style sheet in stead of px to define the width but you will still have a problem with the number of characters.