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
245
Need to change webdialog window's close button
posted

Hello all,

I am using webdialogwindow by customizing header and background images by just replacing the existing images which is present in ig_res/images folder in my project root. everything is updating fine like header right corner, left cornder bottom and top.

But i need to replace the close button appears on top right of the window. with my own customize close icon. the existing icon type is ".gif ". But the icon we customized is ".PNG" file. i want to replace the existing refrence(.gif to .PNG). i dont know where they are calling this close button in css property.

It will be greatly helpful if any one suggest any idea on this.

Regards,
M.Seenuvasan

  • 24497
    Suggested Answer
    posted

    Hi M.Seenuvasan,

    Images on header buttons are defined by properties in header. Below is example.

    <ig:WebDialogWindow ID="WebDialogWindow1" runat="server">
       <Header>
        <CloseBox ImageUrl="~/config.png" HoverImageUrl="~/config.png"
         PressedImageUrl="~/config.png">
        </CloseBox>
       </Header>
    </ig:WebDialogWindow>