Hello,
I can’t understand do i need to use every time i need to open the following window ‘visible’ and ‘invisible’ option.
<div id="eventWindow" style="visibility: hidden;">
<img width="14" height="14" src="ccs/images/help.png" alt="" />
Фактурата е запазена!<br>
Искате ли да генерирате PDF?
<div style="float: right; margin-top: 15px;">
<button id="ok" style="margin-right: 10px">Да</button>
<input type="button" id="cancel" value="Отказ" />
</div>
</div>
Now i call it like this:
$("#eventWindow").jqxWindow('open');
$("#eventWindow").css('visibility', 'visible');
If i don’t use $(“#eventWindow”).css(‘visibility’, ‘visible’); the window is visible by default and i don’t like this.And if i don’t put style=”visibility: hidden;” in the HTML it is visible too.