issue with ignore_week

Hi,

I would like to report an issue :

on the basic init sample (01_basic_init.html) (scheduler build 130813), if I add :

[code]scheduler.ignore_week = function(date)
{
switch(date.getDay())
{

            case 1 :
               
                    return true; 
             
                break;
            
            default:return false;
        }
    };  [/code]

to hide the monday day, then the dhtmlxscheduler freezes when i try to add an event.

( Hello, looks similar to : viewtopic.php?f=6&t=36194 )

Hello,
we’ve confirmed the bug, fix will be included in the upcoming version.
Currently you can apply the attached patch (make sure to add it to the page after dhtmlxscheduler.js), it should fix the issue.
dhtmlxscheduler_ignore_time_fix.zip (1.13 KB)

Thanks a lot !