I've made a little progress in figuring out what's going on, but I've run into another issue. First, the zIndexBase for StickyWin.ModalWM is being set to 11000 while the datePickerSW z-index is only 10000. I can get around this by setting the default zIndex in stickyWinOptions for the DatePicker to something higher than 11000 - I chose 12000. This now allows the DatePicker to show above the StickyWin.
The new issue is that if I click on the DatePicker, it gets moved behind the StickyWin and no date is selected. So, then I cannot select a date and the DatePicker remains open after I close the StickyWin. Why is this moving behind the StickyWIn? I've printed out some more z-indexes to see what's going on...
(class) (id): z-index
(mask) (mask-1259962284777): 10000
(StickyWinInstance SWclearfix) (thePrettyNote): 11000
(mask) (mask-1259962284782): 10000
(datePickerSW StickyWinInstance SWclearfix) (StickyWin_1259962284808): 12000
(datePickerSW StickyWinInstance SWclearfix) (StickyWin_1259962284843): 12000
(datePickerSW StickyWinInstance SWclearfix) (StickyWin_1259962288541): 12000
(closeButton closeSticky) (null): 12002
Here you can see I have 3 date pickers on the page at this point. This actually doesn't provide much useful information, but I can verify the items are on the appropriate level.
Thanks,
~Philip