cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
291
Views
0
Helpful
2
Replies

Modify GadgetHeight of the EmbeddedWebAppSampleGadget-10.5.1

Hello,

I installed and configured the EmbeddedWebAppSampleGadget - 10.5.1 in my lab and everything works fine. except for height of the Window . I tried to edit the config file in Finesse to add ?gadgetHeight=500 and it does not work.  Does anyone know how to do that ?

<gadget>/3rdpartygadget/files/EmbeddedWebApp/Bell.xml?gadgetHeight=500</gadget>

2 Replies 2

check the file : finesse-10.5.1.js

Search for height, you will find all the source for the height and other stuff in it.

Amer

Hello,

Thank you for your answer.  Finally the solution for the 3rdPartyEmbeddedWebApps was not in the js file.  It was in the EmbeddedWebApp.css file.  I just have to add the px beside de 650 and restart Cisco Tomcat.

/**

 * Default attributes for gadget body.

 */

body {

    background: none transparent;

    padding: 0px;

}

#displayFrame {

    width:100%;

    height:650px;

    border: 1px solid;

}