Delete option from end type from edit pop up

Hi !  
I need to hide the option "never" for the repeat select  and from the end type from the editor pop up.
I hope you answer, Regards. 



1 Reply

HB Hareesh Balasubramanian Syncfusion Team April 7, 2020 12:10 PM UTC

Hi Juan, 

Greetings from Syncfusion Support. 

We have validated your reported problem at our end and for the we have prepared a sample using popupOpen event. And the sample can be downloaded from the following link, 

Code snippet
    function onPopupOpen(args) { 
        if (args.type === "Editor") { 
            let end = document.querySelector(".e-end-on-element").ej2_instances[0]; 
            end.getItems()[0].style.display = 'none'; 
            end.index = 1; 
            end.dataBind(); 
            let interval = document.querySelector(".e-end-on-element").ej2_instances[0]; 
            interval.step = 2; 
            interval.dataBind(); 
        } 


Kindly try the above sample and if you have any other concerns please revert for further assistance. 

Regards, 
Hareesh 


Loader.
Up arrow icon