function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
raman123raman123 

how to convert java script to url button

function showBox() {

var box = new parent.SimpleDialog("helder"+Math.random(), true);
parent.box = box;

box.setTitle("Sales Coach - Stage: {!TSGADX__Deal__c.TSGADX__Sales_Stage__c}");

box.createDialog();
box.setWidth(900);
box.setContentInnerHTML("<a href=\"#\" onclick=\"box.hide();\">Close</a><br/><iframe src =\"/apex/TSGADX__SalesCoachV2?id={!TSGADX__Deal__c.Id}\" height=\"700\" width=\"950\" frameborder=\"0\" style=\"border:none; width:850px; margin-left:0; margin-right: auto; height:600px;overflow-x:hidden;\"><p>Your browser does not support iframes.</p></iframe>");

box.setupDefaultButtons();

box.show();

}

showBox();