This is a migrated thread and some comments may be shown as answers.

Can we show the "calender" at the first time(in the page load itself)

2 Answers 32 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Harikrishnan
Top achievements
Rank 1
Harikrishnan asked on 09 Aug 2012, 08:31 AM
Hi,

Can we show the "calender" at the first time(in the page load itself)


Thanks and Regards
Hari

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 09 Aug 2012, 09:24 AM
Hi Harikrishnan,

Try the following code snippet to achieve your scenario.

JS:
<script type="text/javascript">
    $(document).ready(function () {
        $(".rsDatePickerCalendar").css("position", "fixed");
        $('.rsDatePickerActivator').click(function () {
            debugger;
            $(".rsDatePickerCalendar").css("position", "absolute");
        });
    });
</script>

Hope this helps.

Regards,
Princy.
0
Harikrishnan
Top achievements
Rank 1
answered on 09 Aug 2012, 09:36 AM
Thanks for your reply

I have another requirent with these..Please check this link..
Can we integrate these together

http://www.telerik.com/community/forums/aspnet-ajax/scheduler/scheduler-calender-control-customization.aspx


Pls check and reply
Tags
Scheduler
Asked by
Harikrishnan
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Harikrishnan
Top achievements
Rank 1
Share this question
or