Bloqueo de citas no se ajusta a las celdas

Buenos dias

Les pregunto como puedo hacer, para que el bloqueo de citas se ajuste bien a la celda
Adjunto imagen 

Gracias




Attachment: Imagen_Syn_9c06065c.rar

7 Replies

SV Sabritha Venu Gopal Syncfusion Team October 3, 2018 12:01 PM UTC

Hi Veronica, 
 
Thanks for your update. 
 
We could reproduce the reported issue “Block range width is not correct” at our side. Therefore, we confirm this issue as a defect and logged a bug report. The fix for this issue will be included in our upcoming Volume 3, 2018 SP1 release which is expected to be rolled out by the end this month. 
 
Regards, 
Sabritha V 
 



VO veronica orozco October 3, 2018 11:39 PM UTC

Listo, gracias 
aprovecho hay la posibilidad de que un agenda se actualice cada cierto tiempo sin tener que recargar la pagina


VD Vinitha Devi Murugan Syncfusion Team October 4, 2018 09:30 AM UTC

Hi Veronica, 
 
We are sorry for the inconvenience, as your reported requirement to fit the block appointments to the cell is currently not achievable while applying different timescale options and the problem was due to the issue with block appointment width calculation in such scenario. Therefore, we have logged it as an issue and the fix for this issue will be included in our upcoming Volume 3, 2018 SP1 release which is expected to be rolled out by the end of this month. Since there is no workaround possibilities to overcome this issue now, kindly be patience until it gets fixed. If in case, you need the patch for this issue fix in advance before the SP1 release, kindly revert back to us with your need and we will make arrangements to avail it at earliest. 
 
Regards, 
M. Vinitha devi 
 



VO veronica orozco October 5, 2018 12:54 AM UTC

thank you, I wait until the next version,
I ask you another question, I can get the agenda updated every certain time without having to give F5 or reload the page and show me in the current time


SV Sabritha Venu Gopal Syncfusion Team October 5, 2018 12:38 PM UTC

Hi Veronica , 
 
Thanks for your update. 
 
We suspect that your requirement “I can get the agenda updated every certain time without having to give F5 or reload the page and show me in the current time” is to show the current time indicator in the Scheduler current view. For example, if the current time is 10 AM then current view wants to display 10 AM range and if the current time changed to 10 PM then current view wants to display 10 PM. Kindly confirm whether your requirement is related to the above scenario and the same wants to be achieved for Agenda view.  
 
Regards, 
Sabritha V 
 



VO veronica orozco October 5, 2018 06:03 PM UTC

Good day, 
 the idea is that if it is 10 o'clock in the morning show from that time, do not show previous hours and if this agenda is automatically recharged



KK Karthigeyan Krishnamurthi Syncfusion Team October 9, 2018 04:19 AM UTC

  
Hi Veronica,  
 
Thanks for your update. 
 
We suspect that your requirement is to “Update the scroller position to current time” and for the same we have prepared the below sample which can be downloaded from the following location. In the sample, when the button is clicked, current time cell position will be calculated and set to the scroller position. Please check the following code example for your reference. 
 
 
Default.aspx 
 
Button component: 
 
<ej:Button ID="Button1" runat="server" Type="Button" Text="EJ Click" ClientSideOnClick="Button1_Click"></ej:Button> 
 
ClientSideOnClick: 
 
<asp:Content ID="ScriptContent" runat="server" ContentPlaceHolderID="ScriptSection"> 
    <script type="text/javascript"> 
        function Button1_Click(e) { 
            var scheobj = $("#Schedule1").data("ejSchedule"); 
            if (scheobj.element.find('.e-highlightcurrenttimeline').length > 0) 
            { 
                var rowindex = ($('.e-highlightcurrenttimeline')[0].offsetTop / scheobj.element.find('.e-workcells').height()) -1; 
                var highScrol = scheobj.element.find('.e-highlightcurrenttimeline').length != 0 ? rowindex * scheobj.element.find('.e-workcells').height() : 0; 
                  $('div#' + scheobj._id + "_scroller").ejScroller({ scrollTop: highScrol }); 
                scheobj.element.find('.e-scrolltimecells').css('top', -(scheobj.element.find('.e-draggableworkarea').scrollTop()) + 'px'); 
            } 
        } 
    </script> 
</asp:Content> 
 
Please kindly revert us if needed further assistance. 
 
Regards, 
Karthigeyan 
 


Loader.
Up arrow icon