The generic confirm popup is just that a generic. Suggestion would be to create your own div popup to show or hide so as to format it the way you are wanting.
Coding is like life, learn from the past and work towards the future, trying to redo past code, ends in lost time and nothing new accomplished.
MasterV23
Member
114 Points
327 Posts
ConfirmButton popup styling?
May 24, 2012 08:01 PM|LINK
How do you style the confirmbutton popup?
Simliar to if you clicked the button on the following link its grayed out the background and looks nice.
http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/ConfirmButton/ConfirmButton.aspx
AWAlger
Contributor
2531 Points
540 Posts
Re: ConfirmButton popup styling?
May 24, 2012 08:20 PM|LINK
The generic confirm popup is just that a generic. Suggestion would be to create your own div popup to show or hide so as to format it the way you are wanting.
Coding is like life, learn from the past and work towards the future, trying to redo past code, ends in lost time and nothing new accomplished.
Don't forget to mark Answer!!!!!!!
chetan.sarod...
All-Star
66619 Points
11270 Posts
Re: ConfirmButton popup styling?
May 25, 2012 03:43 AM|LINK
Use the same css classes which are overridden as
<style>
.modalBackground {
background-color:Gray;
filter:alpha(opacity=70);
opacity:0.7;
}
.modalPopup {
background-color:#FFD9D5;
border-width:3px;
border-style:solid;
border-color:Gray;
padding:3px;
width:250px;
}
</style>
As given in http://forums.asp.net/t/1188275.aspx/1
Also use check other classes using IEweb developer tool and check the css class names and use that.
Use the css http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/StyleSheet.css to copy existing classes.
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
MasterV23
Member
114 Points
327 Posts
Re: ConfirmButton popup styling?
May 25, 2012 11:15 AM|LINK
Thanks chetan.sarode