I want to apply style just for the arrows, on the top, of the WebMonthCalendar, that
are used to change the months.
I need them to be ltr, but the rest of the WebMonthCalendar, to be rtl.
Hello drpoalim ,
Thank you for posting in out forum.
The WebMonthCalendar has 2 settings for the buttons: PreviousMonthButton and NextMonthButton. You can set for them the image url you want them to use. For example:
<ig:WebMonthCalendar ID="WebMonthCalendar1" runat="server">
<PreviousMonthButton ImageUrl="~/ig_res/Default/images/igmc_next.gif" />
<NextMonthButton ImageUrl="~/ig_res/Default/images/igmc_next.gif" />
</ig:WebMonthCalendar>
So you could set for them an image of an arrow positioned ltr. There are also some additional settings like the HoverImageUrl and PressedImageUrl that you can set.
Let me know if you have any questions or concerns.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://ko.infragistics.com/support
Great!
thanks.