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

Height of GridBoundColumn with HTML

0 Answers 150 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Patrick
Top achievements
Rank 1
Patrick asked on 17 Nov 2017, 06:56 PM

I have a radgrid which displays html as one of the columns.   If one of the rows has a large font, the size of the row height does not expand to match.  What can I do to ensure that the height matches what the HTML would display?  I am attaching an example:  The third row shows the issue.

This is the ASPX code.

 

                <telerik:RadGrid ID="rgNotes" runat="server" AllowSorting="True"
                    AutoGenerateColumns="False" Width="100%">
                    <MasterTableView OverrideDataSourceControlSorting="true" AllowSorting="true" DataKeyNames="TranscriptNoteId,NoteGUID" >
                        <Columns>
                            <telerik:GridButtonColumn UniqueName="btnEdit" Text="Edit" ButtonType="LinkButton" CommandName="EditNote" ItemStyle-Width="1%"  />                                    
                            <telerik:GridButtonColumn UniqueName="btnDelete"  Text="Delete" ConfirmText="Confirm delete?" ButtonType="LinkButton" CommandName="DeleteNote" ItemStyle-Width="1%" />                                                                                                            
                            <telerik:GridBoundColumn DataField="Note" HeaderText="Note" SortExpression="Note" />                            
                        </Columns>
                    </MasterTableView>
                </telerik:RadGrid> 

 

 

No answers yet. Maybe you can help?

Tags
Grid
Asked by
Patrick
Top achievements
Rank 1
Share this question
or