I know you asked this a really long time ago, but since I have been searching for a while I'll post what I have found so far. I do not have the answer as the change I did breaks several Select buttons, but maybe it can help someone get closer to the answer.
Look at line 31 in /include/SugarFields/Fields/Relate/EditView.tpl.
Change:
Code:
onclick='open_popup("{{sugarvar key='module'}}", 600, 400, "", true, false, {{$displayParams.popupData}}, "single", true);' to:
Code:
onclick='open_popup("{{sugarvar key='module'}}", 600, 400, "&account_name=" + escape(this.form.billing_account_name.value), true, false, {{$displayParams.popupData}}, "single", true);' You'll notice in there the 600, 400. I have not tested this, but I am sure changing those changes the size of the popup.
This is not a perfect (or even good) method and causes lots of other problems. This change breaks several crucial Select buttons, including Assigned to, Team, Parent Account, Contact in Tasks, and probably others. Obviously not something in live at this point, but something to try and get working in our development setup.
One other thing to note. I noticed the line item that the Product Select popup in the quote does pull the Product Name if populated, or blank if it is not yet populated. I didn't have time to check on how it does it today, but that is where I'll be looking next.
Bookmarks