This question is locked. New answers and comments are not allowed.
Due to Firefox not working with .click() functionality - how would I programatically (via javascript) simulate the user clicking the Insert or Update buttons in the mvc grid popup window?
Thank You in Advance,
Rene.
[ SOLUTION ]
Works for both IE and FF and probably more...
function TelerikButtonClickInsert(gridName){
$(# + gridName + 'Popup .t-grid-insert').click();
}
function TelerikButtonClickUpdate(gridName){
$(# + gridName + 'Popup .t-grid-update').click();
}
Thank You in Advance,
Rene.
[ SOLUTION ]
Works for both IE and FF and probably more...
function TelerikButtonClickInsert(gridName){
$(# + gridName + 'Popup .t-grid-insert').click();
}
function TelerikButtonClickUpdate(gridName){
$(# + gridName + 'Popup .t-grid-update').click();
}