Hi:
I have a grid with the Log4Net table displayed. The Message and Exception columns are over 2000 characters long. Upon the page initially displaying it is really ugly (message column not wrapping, text beyond the edge of grid). Click the Next Page and then it is better, but still ugly.
How can I get this to fit within a page and my boss not say, 'unacceptable'?
http://logging.apache.org/log4net/release/config-examples.html
Use above for schema...
Phil
I have a grid with the Log4Net table displayed. The Message and Exception columns are over 2000 characters long. Upon the page initially displaying it is really ugly (message column not wrapping, text beyond the edge of grid). Click the Next Page and then it is better, but still ugly.
| <telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" |
| AutoGenerateColumns="False" DataSourceID="logsDataSource" GridLines="None" |
| Skin="Office2007" Width="100%"> |
| <HeaderContextMenu Skin="Office2007"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </HeaderContextMenu> |
| <MasterTableView DataSourceID="logsDataSource" Width="100%" > |
| <Columns> |
| <telerik:GridBoundColumn DataField="Id" HeaderText="Id" UniqueName="idColumn" /> |
| <telerik:GridDateTimeColumn DataField="Date" HeaderText="Date" UniqueName="dateColumn" /> |
| <telerik:GridBoundColumn DataField="Thread" HeaderText="Thread" UniqueName="threadColumn" /> |
| <telerik:GridBoundColumn DataField="Level" HeaderText="Level" UniqueName="levelColumn" /> |
| <telerik:GridBoundColumn DataField="Logger" HeaderText="Logger" UniqueName="loggerColumn" /> |
| <telerik:GridBoundColumn DataField="Message" HeaderText="Message" UniqueName="messageColumn" /> |
| <telerik:GridBoundColumn DataField="Exception" HeaderText="Exception" UniqueName="exceptionColumn" /> |
| </Columns> |
| <PagerStyle Position="TopAndBottom" /> |
| </MasterTableView> |
| <FilterMenu Skin="Office2007"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </FilterMenu> |
| </telerik:RadGrid> |
How can I get this to fit within a page and my boss not say, 'unacceptable'?
http://logging.apache.org/log4net/release/config-examples.html
Use above for schema...
Phil