Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何水平显示 rad 日历月视图。这是我的代码:
<telerik:RadCalendar ID="rcJan" runat="server" SingleViewColumns="31" SingleViewRows="1" FocusedDate="2012-01-01" ShowOtherMonthsDays="false"> </telerik:RadCalendar>
但它只显示从 1 月开始的 24 天。谢谢
您只能通过以下一些设置来执行此操作
只需将 Orientation 属性设置为RenderInColumns或RenderInRows即可指定日历的方向。
编辑::
get_orientation === 如果方向是“RenderInRows”,则返回 1,如果是“RenderInColumns”,则返回 2。
或者
radCalendar.Orientation = 方向。水平;