Skip to main content
Question

How to resize the iFrame modal programmatically.

  • October 21, 2021
  • 2 replies
  • 132 views

Forum|alt.badge.img

We are in process of integrating our calling widget within Freshdesk using an iFrame. So, is there any way we can resize that iFrame modal as per our requirement.

Did this topic help you find an answer to your question?

2 replies

Forum|alt.badge.img+1
  • Contributor
  • 3 replies
  • December 15, 2022

Just stumbled upon this entry (looking for something else). Is this what you are looking for:

in app.js in:

function start() {
  app.initialized().then(function getClientObj(_client) {
    client = _client;
    client.instance.resize({height: "60px"});
  });
}


growexx
Community Debut
  • Community Debut
  • 1 reply
  • December 21, 2022

Hi @suraj.joshi  

As per my understanding, 

These steps will make an iframe resizable:

  1. Create a div for resizing. eg: <div class="resizable"></div>
  2. Apply the style tag for style of div.
  3. Include jQuery & jQuery UI 
  4. Execute Resizable .

Reply