AG-Grid Column Overlapping - ag-grid

I'm having a spot of trouble with ag-grid enterprise. I have a grid with groups that function sort of like a folder tree. However, the name column overlaps with the rest of the columns. This is especially apparent when resizing the columns. No other column overlaps like this. What could be causing this?

I had a similar issue. Double check your ColDefs.
Someone had accidently set the width:0 to the first column and were seeing this.
Not sure about col resize as we didn't have that enabled. Still if minWidth is set (which someone could have for mobile users), it could cause this.
ColDef params:
maxWidth
width
minWidth

The issue fixed itself when we pinned the column to the left using pinned: left. Doesn't make much sense to me personally but that is how we got around it.
EDIT: Further looked into it. It was a styling issue. We were setting display to flex.

Related

How to remove horizontal lines on a text table in Tableau online?

I have created a text table in a worksheet in Tableau online. There are horizontal rules in the text table that I want to remove. There does not seem to be a way to get rid of them though. If anyone has a suggestion it would be appreciated.
Format - Borders - Row Divider. Set the Header and Pane to None, and these lines will vanish.

JasperReports - last line of a table on a page

I have a table that gets split onto multiple pages due to it's size. The style of the table doesn't have the border between two rows and when the table gets split the last row doesn't seem right due to the missing bottom border.
I just want the last record to terminate with a border so that the page seems complete.
Is there a way to set the bottom border to the last line on the page or, how should I implement this behavior?
You can use a horizontal line in the border of the band in which you are using the table.
The option for drawing horizontal line is available in Palette.
Table column footers repeat just like column headers. By adding a top pen border to the column footer the effect is perfect.
As per your question i am not totally confident about my answer but may be u can do by just adding one sub-report after your table and just put one line from pallet in that report may be that will help u to make your report more clear.
Thanks,
Hiren patel

Dynamically resize if hiding rows conditional in SSRS report

I'm working on a report which displays a configuration for a product, which depending on the product choosen has specific properties. I thought it would be handy to have one rectangle with a table on the left (tblDetailsB) and one on the right side of the report (tblDetailsA) (don't mind the order of A and B here...).
Under the rectangle I have another table which shows a list of drawers (if they're part of the configuration), this list comes from another dataset.
My problem is the size of the rectangle which holds tblDetailA and tlbDetailB is fixed (that's usually why one chooses a rectangle to hold..) and my tlbLade subreport for the drawers is under a lot of whitespace..
I could use subreports for tblDetailsA and tblDetailsB but I don't want to have too many of them..
I got myself into this mess, maybe someone knows a much better idea to solve this?
Thanks to http://www.sqldev.org/sql-server-reporting-services/hidden-rows-still-displayed-9660.shtml
I found out I have to suppress / hide the rows in the static row group under the details group (switch to advanced mode first..).
When I did that the size of the Rectangle (container) was ignored when the rows where hidden :)
Regards,
Mike

How to move all the selected element n rows down in expression blend?

Designing forms in silverlight is a PAIN.
The grid does make it easy to align stuff right or left, but when you start building more complex forms, It quickly becomes a hell.
(Think multicolumns forms, separating parts of the form in sub-usercontrol, with Localized labels so that you need the label column to be set to Auto...)
One particular problem I face is when I need to insert a new row in a form.
Is there any way to select all the
controls on multiple lines and move
them all 1 row down?
Right now, I have to go through every line and move them down, one by one.
How do you effectively build complex forms? I know about the DataForm control from the toolkit, but it is in "preview" quality and from what I have read, it is too inflexible when you need to customize and build multiple-columns forms.
Yes, complex Grid's can be annoying to change. Here are a few thoughts and ideas for you.
If you use Expression Blend and insert the Row or Column using the Blue Bars in the Artboard, Blend will attempt to do this for you. It works with varying degrees of success, largely based on the amount of the control the new row or column snap lines overlaps. For the best results, zoom into the Artboard and add the new snap line very close to the row above or column to the left.
At this point you'll still have a lot of cleanup to do, but the Grid.Row and Grid.Column properties will be correctly adjusted. Correcting the row and column sizes is one of the few times I choose to manually edit the XAML, so you'll probably be faster fixing those values manually.
If odd Margins are created (as they often are) you can select all the affected properties at once and reset the Margins en masse.
Probably the best advice would be to consider using a different control. If you find yourself constantly rearranging the contents of a Grid, perhaps you would be better off with a DockPanel. You can achieve a Grid-like result by adding elements (Grids) docked to the Top and binding the row or column height's to a Resource:
<UserControl.Resources>
<GridLength x:Key="StandardColumnHeight">32</GridLength>
</UserControl.Resources>
Now you can bind the ColumnDefinition Width to the static resource ensuring they all have the same width (of course this could also work with column widths).
<ColumnDefinition Width="{StaticResource StandardColumnHeight}"/>
If you define each of the subsequent Grid's using the same set of ColumnDefinitions (another quick XAML copy-n-paste job).
This may be a little extra work to set up initially, but inserting a new row in your DockPanel is a simple matter of XAML order and would not require as much work.

Enable grow of cross tab in crystal report

I am using a Cross-Tab object in crystal report. I am having problem making my data column (Field Row) to increase dynamically in height when my data size increases. Since the "Can Grow" property in the Format Editor is disabled, it would not let me set the "Can Grow" to true to enable this function. How do I enable the "Can Grow" function so I can set it to true?
I ran into a similar problem where my row labels did not wrap.
Sadly, I think the best solution is to increase the height of your "data" row field (probably the bottom row). This does fix the height for ALL rows but it means that text in ALL rows will be able to wrap at the same height.
I was going to post an image but I don't have the rep.
Cross-Tabs, like Charts, are always able to grow. For this reason, the "Can Grow"-related formatting options are disabled. It really wouldn't make sense if they couldn't grow since they are dynamic objects.
If you're not seeing some data/rows you would expect, it is because the data is not there or something related to the data source for the Cross-Tab is configured incorrectly.