Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by dactar on Jan 27, 2009 13:34
open dhtmlx forum
Change icon_normal.gif in dhtmlxwindows

Hello :)

I'm using dhtmlxwindows with skin called "standard".

I would like change the icon on the left (icon_normal.gif) by my own icon.

The problem is :

- I have 3 different dhtmlxwindows in the same viewport and each has to have a different icon (box1.png, box2.png and box3.png)

- Each icon has 24 pixel height and width

If I just replace icon_normal.gif by box1.png, the icon is resized (too small) and of course box2.png and box3.png are not used.

Do you have an easy way to do this ?

Thanks in advance for your answer :)

Answer posted by Support on Jan 28, 2009 03:07
Hello,

1. Edit the dhtmlxwindows_standard.css file:
div.dhtmlx_window_active img.dhtmlx_wins_icon_standard {
..
and
div.dhtmlx_window_inactive img.dhtmlx_wins_icon_standard {
..
change top, left, width, height

2. Use the following function for set custom icon:
dhxWins.window(id).setIcon(iconEnabled, iconDisabled);
where
iconEnabled - icon for active window
iconDisabled - icon for inactive window
Answer posted by dactar on Jan 28, 2009 13:37
Perfect :) Thanks a lot :)