sDom parameter and using jQueryUI=true

sDom parameter and using jQueryUI=true

marcfarrowmarcfarrow Posts: 28Questions: 0Answers: 0
edited April 2012 in DataTables 1.9
I am trying to change the styling of datatable by using a custom sDom parameter. I want to affix a class specification for the Heading area so I can add a custom title to my table.

Here is my sDom parameter:
[code]
'sDom': '<"H"Tfr>t<"F"ip>',
[/code]

When this renders, the TableTools toolbar is in a DIV tag and the FILTER area is in a separate div tag. The div tags do not "float", therefore they render on two different lines. I want them to render on the same line. But, I digress. What I really need to know how to do is how can I mix the class attribute and the "H"/"T" attributes for the jqueryui themes.

for example:

[code]
'sDom': '<"H""MY_NEW_FANCY_CLASS"Tfr>t<"F"ip>',
[/code]

But this does not work.

Any pointers?

Thanks.

Marc

Replies

  • allanallan Posts: 61,773Questions: 1Answers: 10,112 Site admin
    > The div tags do not "float", therefore they render on two different lines. I want them to render on the same line.

    The filtering and TableTools controls always have their own DIV wrappers - to get them to appear on the same line you need to use a little bit of CSS to float the elements into position, as I do in my default CSS.

    Also, you might want to use this (no double quotes in the middle):

    [code]
    'sDom': '<"H MY_NEW_FANCY_CLASS"Tfr>t<"F"ip>',
    [/code]

    Allan
  • marcfarrowmarcfarrow Posts: 28Questions: 0Answers: 0
    awesome.

    Thanks, Allan. I knew it was a syntax error.
This discussion has been closed.