We're using DevExpress control toolkit for our ASP.NET application. I would like to replace the DevExpress default dropdown calendar with my own because of the following reasons:
- DevExpress dropdown calendar gets positioned absolutely next to the textbox it is assigned to. This is bad, because on IE it gets obscured by other relatively-positioned elements that are siblings to the calendars parents. It can be worked around by setting a lot of z-indexes on these parent elements, but that's annoying. It would be way better if the calendars elements would be at the very end of the DOM with a very high z-index, thus being on top of everything.
- I have a different design that I must apply to the calendar, made by some artists. It's pretty good, but I'm not sure I will be able to make it with the calendars HTML as it is.
Also, the replacement must happen everywhere - both in gridviews and in standalone controls.
Does anyone have any idea on how to do this? I could also go for a variant where I use some custom gridview column types and calendar types that are made by me.
Currently I'm a bit overwhelmed by the complexity of DevExpress.