i need help, how to trSelected by index on flexigrid?
$("#myTable td").prop("selectedIndex",3).addClass("trSelected")
not working
i need help, how to trSelected by index on flexigrid?
$("#myTable td").prop("selectedIndex",3).addClass("trSelected")
not working
Copyright © 2021 Jogjafile Inc.
At the first, please add your code for more information.
in Jquery, you can use
:nth-child(n|even|odd|formula)if you are going to implement index searching.For example:
Above code get the third child of
myTable -> td -> selectedIndex(The first element has the index number 1)