$this->registerJS(
'var ok = confirm("File already exists!! Do you want to overwrite file");
    if(ok)
    {
       "'.Url::toRoute('default/over-write?id=1').'";
    }
    else
    {
       "'.Url::toRoute('default/over-write?id=0').'";
    };',View::POS_READY);
The Url call is supposed to call actionOverWrite() in DefaultController. But this is not happening. How to call action from view?
 
     
     
     
    