We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Gantt escape key

Hello,

I have a problem with Gantt. When I add a new row (see the first attachment) and I press the escape key then a new row appears (see the second attachment). I want to disappear the new row when I press the escape key.

Best regards,
Tomasz Tomczykiewicz

Attachment: gantt_2370d0ec.zip

3 Replies

JA Jesus Arockia Sankaran S Syncfusion Team November 19, 2018 11:59 AM UTC

Hi Tomasz, 
 
Thank you for contacting Syncfusion support. 
 
We have analyzed your requirement and we can achieve your requirement by deleting the record by using deleteItem public method and manually handling the escape key function with sample level. Please refer the below code example for this 
 
<script type="text/javascript"> 
var isAdding = false; 
  $(function () { 
            $("#GanttContainer").ejGantt({ 
                 dataSource: projectData, 
                 endEdit: function (args) { 
                     isAdding = false; 
                     alert(args.rowIndex); 
 
                }, 
                  //.. 
           }); 
    }); 
     $(document).keyup(function (e) { 
        if (e.keyCode == 27 && isAdding) { 
            var obj = $("#GanttContainer").data("ejGantt"); 
                obj.deleteItem(); 
                isAdding = false; 
            }        }) 
</script> 
 
We have prepared the sample for your reference, please find the sample link below 
 
 
Please get back to us if you require any further assistance on this. 
 
Regards, 
Jesus Arockia Sankaran S 



TT Tomasz Tomczykiewicz November 19, 2018 04:08 PM UTC

Hi Jesus,

Thanks, it solved my problem.

Best regards,
Tomasz Tomczykiewicz


JA Jesus Arockia Sankaran S Syncfusion Team November 20, 2018 08:54 AM UTC

Hi Tomasz,  
  
Thanks for your update.  
  
Please get back to us if you require any further assistance on this.  
  
Regards,  
Jesus Arockia Sankaran S 


Loader.
Live Chat Icon For mobile
Up arrow icon