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

Telerik Scherduler keep select when over lick

1 Answer 103 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Vu
Top achievements
Rank 1
Vu asked on 08 Jan 2015, 10:24 AM
I want when cell selected and over lich on any place on the page. that cell selected not be reset. Mean that cell keep selected state !! 
Please help

1 Answer, 1 is accepted

Sort by
0
Nencho
Telerik team
answered on 13 Jan 2015, 09:10 AM
Hello,

I am not quite sure that I have understood your scenario, but if you need to unselect certain cell, once it is selected, you can use the following jquery approach :

<script type="text/javascript">
        var $ = $telerik.$;
 
        function pageLoad() {
            $("#RadScheduler1").on("click", function (e) {
                $(".rsSelectedSlot").one("click", function (i) {
                    $(this).removeClass("rsSelectedSlot")
                });
            });
        }
 
    </script>


Please correct me if I had misunderstood the scenario that you aim to achieve.


Regards,
Nencho
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Scheduler
Asked by
Vu
Top achievements
Rank 1
Answers by
Nencho
Telerik team
Share this question
or