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

Is there a way to increase the margin between text and button for popup confirm window?

1 Answer 91 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Jin
Top achievements
Rank 1
Jin asked on 20 Aug 2012, 01:36 AM
I have one delete button in RadGrid as below. After I clicking the button and pop up a confirm windows, I found the margin space between text and button is too small, I try to adjust it by modify the property ConfirmText as "Do you confirm to delete the record?<br/><br/>", but it cannot work. I don't find a property such as ConfirmHTML. Is there a way to implement it?

 <telerik:GridButtonColumn ConfirmText="Do you confirm to delete the record?" ConfirmDialogType="RadWindow"
                                ConfirmTitle="Delete" ButtonType="ImageButton" CommandName="Delete" ConfirmDialogHeight="150px"
                                HeaderText="Delete" ConfirmDialogWidth="320px" ItemStyle-Width="30px">
                                <ItemStyle HorizontalAlign="Center" />
                            </telerik:GridButtonColumn>


1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 20 Aug 2012, 06:56 AM
Hi Jin,

I guess you want to show space in between the Confirm text and the button.Try overriding the CSS.

CSS:
.RadWindow .rwDialogText
{
    padding-bottom: 25px !important;
}

Thanks,
Shinu.
Tags
Grid
Asked by
Jin
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or