sWidth does not work (1.10.x)

sWidth does not work (1.10.x)

davidkonraddavidkonrad Posts: 13Questions: 4Answers: 0
edited July 2014 in Free community support

I have a first column I want to shrink to 24px, with no luck. bAutoWidth, aoColumns, aoColumnDefs seems only to be happy with making the width larger (for that particular column). Not even word-wrap:break-word; helps.

Neither

   bAutoWdth: false,  
   aoColumnDefs : [ {
      sWidth: "24px", bSortable : false, aTargets : [ 0 ]
   }]

or

   bAutoWdth: false,  
   aoColumns : [
        { sWidth : '24px' },
        null,
        null,
        null,
        null
    ]

Works :( see fiddle -> http://jsfiddle.net/R4Ua2/

Answers

  • davidkonraddavidkonrad Posts: 13Questions: 4Answers: 0
    edited July 2014

    sWidth seems to activate some kind of script making links to the docs. Have tried with "" also.

This discussion has been closed.