On month view, my customer wants the previous month arrow to appear to the left of the Date header and the next month arrow to appear to the right. So instead of:
< > November, 2011
they want:
< November, 2011 >
Is there a way to do this?
Thanks,
Dan
< > November, 2011
they want:
< November, 2011 >
Is there a way to do this?
Thanks,
Dan
7 Answers, 1 is accepted
0
Hello Dan,
Here is a set of CSS styles that achieve a similar functionality and move the navigation arrows as in the png file.
Plamen Zdravkov
the Telerik team
Here is a set of CSS styles that achieve a similar functionality and move the navigation arrows as in the png file.
/** Move link to the right */
html div.RadScheduler .rsHeader .rsNextDay {
margin-left
:
220px
;
}
/** Move title to the left */
html div.RadScheduler .rsHeader h
2
{
margin-left
:
-225px
;
text-indent
:
0
;
float
:
left
;
display
:
inline
;
}
/** Hide today link and date chooser */
html div.RadScheduler .rsHeader .rsToday,
html div.RadScheduler .rsHeader .rsDatePickerActivator {
display
:
none
;
}
You can set the margin pixels according to your scenario.
Hope this will be helpful. If you have further questions please feel free to ask.
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
Hello Dan,
Here is a set of CSS styles that moves the navigation arrows and will help you to achieve a similar functionality.
Helen
the Telerik team
Here is a set of CSS styles that moves the navigation arrows and will help you to achieve a similar functionality.
/** Move link to the right */
html div.RadScheduler .rsHeader .rsNextDay {
margin-left
:
220px
;
}
/** Move title to the left */
html div.RadScheduler .rsHeader h
2
{
margin-left
:
-225px
;
text-indent
:
0
;
float
:
left
;
display
:
inline
;
}
/** Hide today link and date chooser */
html div.RadScheduler .rsHeader .rsToday,
html div.RadScheduler .rsHeader .rsDatePickerActivator {
display
:
none
;
}
You can set the margin pixels according to your scenario.
Hope this will be helpful. If you have further questions please feel free to ask.
Helen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
Dan
Top achievements
Rank 1
answered on 23 Nov 2011, 09:43 PM
That's perfect. Thanks Plamen / Helen!
0
Christopher
Top achievements
Rank 1
answered on 13 Feb 2017, 01:15 PM
I am using a radscheduler control in my project that defaults to the month view. The previous and next buttons say previous day and next day instead of previous month and next month. How do I change these?
0
Hello Christopher,
You can localize both strings through the provided localization:
http://demos.telerik.com/aspnet-ajax/scheduler/examples/localization/defaultcs.aspx
Regards,Rumen
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which
deliver the business app essential building blocks - a grid component,
data visualization (charts) and form elements.
0
Christopher
Top achievements
Rank 1
answered on 13 Feb 2017, 05:42 PM
What I need to be able to do is if in month view, say next month, previous month. If in week view, say next week, previous week, and if in day view, say next day and previous day. Editing the Localization will only make the buttons say the same thing no matter which view is displayed.
0
Christopher
Top achievements
Rank 1
answered on 13 Feb 2017, 05:45 PM
Nevermind.. I'll keep it simple and just say Next and Previous. :) Thank you for the help!