This is a migrated thread and some comments may be shown as answers.

[Solved] RadGrid Button Column Confirm type

1 Answer 225 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Rahul
Top achievements
Rank 1
Rahul asked on 17 Sep 2009, 07:09 AM
In my applicatin i use button column for confirmatin of delete some product , i want change it height and width and forecolor of the text .. It wil takes black automatically

My code is

<telerik:GridButtonColumn ButtonType="ImageButton" HeaderText="Remove" ImageUrl="images/Delete.gif"
                                                    ConfirmText="Delete this Proposal?" UniqueName="DeleteColumn" ConfirmDialogType="RadWindow" 
                                                     CommandName="Delete" Text="Delete" ConfirmTitle="Delete">
                                                    <HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" />
                                                    <ItemStyle HorizontalAlign="Center" V
erticalAlign="Middle" />
                                                </telerik:GridButtonColumn>

How to change rad confirm height width color ?


1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 17 Sep 2009, 07:45 AM
Hi Rahul,

Try adding the following CSS in order to set style for RadConfirm of GridButtonColumn.

CSS:
 
<style type="text/css"
.RadWindow .rwWindowContent .radconfirm, 
    colorred !important; 
.RadWindow .windowpopup.radconfirm  
{  
    height150px !important;  
    width500px !important;  
}    
</style> 

You can also checkout the following forum post which discusses similar scenario.
Styling a ConfirmDialogType="RadWindow"

-Shinu.
Tags
Grid
Asked by
Rahul
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or