fluid width tables

If you have any custom skins that you would like to contribute to the community please forward them to my email address.
Contact me via the Contact Us page on the website.
Also please post a screens-hot of some of the pages showing the skin here.
I will then set up a link from the uploaded file to the forum to allow questions and discussions that relates to the skin.
ianraba
Posts: 34
Joined: 2010-06-24 17:44

fluid width tables

Post by ianraba » 2012-11-28 21:55

Hi
has anyone implemented fluid width tables for their mxkollection lists?

User avatar
Fred
Site Admin
Posts: 491
Joined: 2010-02-15 12:10
Location: Armagh, Northern Ireland
Contact:

Re: fluid width tables

Post by Fred » 2012-11-29 14:38

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.

Post Reply