Author Topic: Jquery ui theme striped row  (Read 1870 times)

omerix

  • Pro Enterprise
  • Full Member
  • *
  • Posts: 147
    • View Profile
Jquery ui theme striped row
« on: December 15, 2018, 11:44:44 pm »
If I don't add the following code to the .js file, the "striped rows" feature doesn't work in Jquery ui. Isn't that right?

.js adding code:
"n.push (" pq-striped ui-state-default ")"

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6263
    • View Profile
Re: Jquery ui theme striped row
« Reply #1 on: December 17, 2018, 09:37:42 am »
By default, striped rows work with custom themes only.

For jQueryUI you can add css background rules manually, no js change is required.

Code: [Select]
.pq-striped.pq-grid-row{
  background: red;
}