How to open custom view in same window in sugarcrm..like quick compose email view in leads module of SugarCRM

StackOverflow https://stackoverflow.com/questions/23077355

質問

I have made a email functionality in a custom view using JavaScript. The problem is on clicking the send email button in list view it goes to this window and previous window is gone. I want my custom view for emailing to popup just like the default quick response email, that pops up when we click Email button in quick action menu in leads module in SugarCRM. Can anybody suggest how it could be done.

役に立ちましたか?

解決

Open the Popup in a new window with a defined size using javascript

function popup (url) {
    foo = window.open(url, "Popup", "width=400,height=300,resizable=yes");
    foo.focus();
    return false;
}

or take a look at JQuery Dialog

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top