Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Dec 10, 2009 11:52
open dhtmlx forum
DataBg.png of scheduler

I want to delete the background databg.png only on the unit view.
Answer posted by Alex (support) on Dec 11, 2009 06:32

You can try to use the following approach:

<style type="text/css" media="screen">
    .dhx_scale_holder.units{
        background-image:none;
    }
</style>
...

<script>

...

scheduler.templates.week_date_class=function(date,today){

    if(scheduler._mode != "unit") return "";
    return "units"; 

}

...

</script>


Answer posted on Dec 11, 2009 07:02
Thank you!!!