Browse by Tags
All Tags » TableFlowView (RSS)
Showing page 1 of 2 (11 total posts)
-
Depending on which type of View you are using on the DataGridControl, there are two ways of doing what you wish.For the TableView, simply set the Style of the DataRow elements to have the Height you need. <Style TargetType=''{x:Type xcdg:DataRow}''> <Setter Property=''Height'' Value=''40'' ...
-
Goodmorning,
we are using wpf datagrid 3 months now and we are very satisfied with the perfomance and all it's goodies!!
The problem we are facing is that we have a slider bound to the FontSize of the DataGridControl and everything works well except of the Height of the DataRow, which is constant 30, and the content of the cells is hiding when ...
-
Hi Neo, This does indeed look like a bug, we have posted a request to the development team for a fix on this issue. We will keep you updated once we have more infromation.
-
If a custom Office 2007 theme is used with TableflowView on a DataGrid, no horizontal scroll bar appears if there are detail row columns outside of the viewport. See attached project. Expand a master row to show the detail rows and make the browser window smaller than the total width of the detail row columns. No horizontal ...
-
I am trying to reduce the vertical space the WPF DataGrid requires. I have a Master/Detail grid using the TableflowView. I have a few ideas but am not sure which are possible and feasible, and am open to new ideas. My ideas include:
1.) Create a different ControlTemplate for the HierarchicalGroupByControl. AFAIK, this is much ...
-
Hi,
I have a problem with the last release of the DataGridControl v3.6 when I use it with the TableflowView.
One out of three, when I try to drag & drop a column header in the GroupManager to group by that column, my CPU goes up indefinitely to 100% (in fact, 50% because I have a dual-core and the grid doesn't seem to be optimized for ...
-
Once I got past my silly mistakes and was able to get a DataGridUnboundItemProperty to hit my event handler for QueryValue, I found that I only ever receive an EmptyDataItem as e.Item, instead of a DataRowView as all the examples I have found indicate. Of course, I can't calulate much with only an EmptyDataItem. The first column shows ...
-
HI , JOB
it is better to make a default style for with target type and put setter for the same to set the default properties.
you can try the same.
following is example for your referance.
<Style TargetType=''{x:Type xcdg:TableflowView}''>
<Setter Property=''Theme''>
<Setter.Value>
<xcdg:Office2007BlueTheme ...
-
Hi everybody,
I think I have found a new bug in the DataGrid.
There is a big rendering bug when the new TableflowView is used with a custom template in the DetailConfiguration.Footers collection.
I sent you a sample with the bug.
-
Hi,
I am using the CollapseGroup method to expand / collapse groups.
<Code>
foreach (CollectionViewGroup groupSubGroup in groupSubGroups)
{
if (!groupSubGroup.IsBottomLevel)
{
CollapseOrExpandAllGroupItems(groupSubGroup, bExpandItem);
}
else
{
if ...
1
|
|
|
|