0

I am having a problem using Superfish dropdowns inside a jQuery grid. It looks like the dropdown is being clipped by the table bounds.

I’ve researched this and it seems to be a z-index issue except that I have tried various combinations of z-index to no avail.

Here’s a screenshot of what it looks like: alt text

I can post the css and code if need be; it's a bit complicated though.

Thanks in advance.

Rick

rboarman
  • 8,248
  • 8
  • 57
  • 87

1 Answers1

0

maybe adding overflow:visible; to the parent element of your dropdown?

mangokun
  • 5,493
  • 2
  • 15
  • 8
  • That was the hint I needed. My two-column stylesheet had overflow set to hidden. Changing it to visible worked. Thank you! – rboarman Sep 10 '10 at 17:56