Increase line height of a gridcontrol devexpress

1

Gentlemen,

I have a gridcontrol of devexpress (12.1) being populated by a list, and I need to increase the line if the text is larger, and I need to dynamically do that (if the text fits in width, I do not need to break the line) / p>

I have tried the wrap properties to try to break the line, but I was not successful

    
asked by anonymous 24.07.2014 / 16:21

1 answer

1

Using version 13.2 and the code below, the line break occurred correctly.

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" Width="100px">
        <Columns>
            <asp:BoundField DataField="Dado1">
            <ItemStyle Wrap="True" />
            </asp:BoundField>
        </Columns>
    </asp:GridView>
    
24.07.2014 / 19:41