Hi,
I have a radgrid with EditMode = "Popup" and EditType = "WebUserControl"
I can set some parameters of the PopUp using javascript:
var popUp;
function ShowPopUp(sender, args) {
popUp = args.get_popUp();
popUp.style.height = "auto";
popUp.style.width = "680px";
popUp.style.left = ((window.innerWidth - 680) / 2).toString() + "px";
popUp.style.top = ((window.innerHeight - 515) / 2).toString() + "px";
}
But how can I modify the settings from the caption of the popup?
Settings like:
Height
FontSize
FontColor
BackColor
Thank you so much for attention! And sorry for my bad english!