Hi,
I am creating a progress bar with a percentage value.
I want to change the text of a dhtmlx alert on my PHP back end code.
Please Help.
Ndegwer | Kenya
Hi,
I am creating a progress bar with a percentage value.
I want to change the text of a dhtmlx alert on my PHP back end code.
Please Help.
Ndegwer | Kenya
There is no API to change the alert, but you can close the alert and open the new one.
var box = dhtmlx.alert(...);
....
//hide old alert and show a new one
dhtmlx.hide(box);
box = dhtmlx.alert(...)
Thx