Where do I change the class atribute

Where do I change the class atribute

Gustavo2090Gustavo2090 Posts: 8Questions: 3Answers: 0

in wich document do I change the class atribute in the select row number in datatable?, because I'm using materialize and I need to change that attribute for me to work.

Answers

  • glendersonglenderson Posts: 231Questions: 11Answers: 29

    If you open your browsers development environment, inspect the element, it should tell you exactly which class is being used and where it's coming from (which style sheet or inline).

  • Gustavo2090Gustavo2090 Posts: 8Questions: 3Answers: 0
    edited January 2016
      <select class="" name="mytable_length" aria-controls="mytable">
          <option value="10">10</option>
          <option value="25">25</option>
          <option value="50">50</option>
         <option value="100">100</option>
     </select>
    

    That's the code I got, from the table creation, but when Using materialize the select do not appear BUT if I modify this lane like this:

      <select class="browser-default" name="mytable_length" aria-controls="mytable">
    

    It shows perfectly! so that's why I wanna know if there's any way to make it static :)

This discussion has been closed.