Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
Rendering problem with WebDialogWindow
posted

Hi!

I'm having a Masterpage which I'm using for all other pages in my project. On one page, I have a WebGroupBox which contains several labels, a GridView and finally a WebDialogWindow which is Hidden at the beginning. When the user selects an item on the GridView, the WebDialogWindow is shown and should display some of those values.

The problem I got now is that the WebDialogWindow appears, but it looks like transparent, meaning the frame is not shown and the background isn't shown as well. The "close" symbol is there but only "written" with the red cross besides which remarks that the picture couldn't be loaded.

Does anyone know what the problem could be?

 

 

Parents
No Data
Reply
  • 28464
    Suggested Answer
    posted

    Hello,

    I think that css cl***are missing on client. WebDialogWindow loads those cl***from a local files. In most cases those files are located at the local to project directory ~\ig_res.

    You may look at generated html and search for <link ... href="aPath/ig_res/Default/ig_dialogwindow.css" ..>.

    That will allows you to find which actual aPath is used and if it is accessible by client.

    If you identified that file on server, but you are not sure if it is loaded, then you may try to debug that by temporary adding to that file any custom style and setting that style to any element on page. If element will not pick up that css, then it means that corresponding <link> failed (and dialog will fail too).

Children