WebHierarchicalDataGridWant to see grid lines and disable word wrapping.
How?
Hi,
I believe this has being discused in the following forum thread: http://ko.infragistics.com/community/forums/t/92645.aspx
Hi Ivaylo ,
i m facing the same issue with WebHierarchicalDataGrid word wrap is not working with IE 11 browser what need to do
Please, let me know how this works for you.
Thank you for using our products!
Hello,
You could use the columns CSS property to set a custom CSS Class for every single column.
In this new scenario it seems more practical to leave the default CSS as it was and add a custom CSS Class to every single column for the root ContainerGrid of the WebHierarchicalDataGrid. Here are a code snippet how to achieve this in the markup and the corresponding CSS Class itself:
<Columns><ig:BoundDataField DataFieldName="CustomerID" Key="CustomerID" CssClass="noTextWrap"><Header Text="CustomerID"></Header></ig:BoundDataField></Columns>
<style>.noTextWrap{white-space:nowrap;}</style>
Thank you for posting in our community!
How to get answers>
Yes, need one more thing:The main grid is with no-wrap. OK.Now I'm adding island rows (dynamically) with no problem, but need that island rows will be with word-wrapping.Is it possible?
Thanks.