Hi @jaideep_te you need to write custom js for that.To trigger a js on dialog open a js need to add as a clientlib:(function (document, $, Coral) {
$(document).on('foundation-contentloaded', function (e) {
//do what you want to do here
});
})(document, Granite.$, Coral); then you can...