Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.

KevinFournier

About

Username
KevinFournier
Joined
Visits
2,233
Last Active
Roles
Administrator

Comments

  • Mark, Based on your description, I'm betting that the dataset is triggering some kind of error. If that is the case, I'm going to need that particular dataset in order to recreate the issue on my end and fix it. Would it be possible to create a sta…
  • Easy little fix. Forget one little keyword and the code does something else entirely. :-)
  • Let me explain what you're seeing, then we can discuss what could be done. The SRP ReportTable Control is based on a third party C++ control from CodeJock.com. They are the ones that built in support showing formulas within group rows. In order to d…
  • Have you found out anything more on this. I haven't run into it before, and I haven't been able to recreate in my test environment. I can ungroup/regroup quite liberally without issue.
  • Colin, I can't recreate this. I think I need a copy of your table somehow. The best bet would be to email me an RDK (stand alone that doesn't rely on your application environment) that I can run against. Barring that, I need all the properties you…
  • You are not missing anything. It honestly never occurred to me that there would be a desire to sort check boxes. I'll look into a solution for an upcoming release, but as it currently stands, what you want is not supported.
  • For the record, the ColumnCheckBoxAlignment property has been fixed and will work correctly in the next release.
  • This is not a currently supported feature, no.
  • Don is correct. The error has to do with the new support for themes. Apparently, when a theme is set, the preview mode is reset to 0. Since I recently added logic to set the theme during creation after I initialize the preview mode, the result was t…
  • Group rows have a built-in context menu for convenience, but this can be removed by setting the GroupRowContextMenuEnabled to 0. At that point you'd have to add your own context menu and include the collapse/expand options yourself.
  • Good catch. This has been fixed for next release.
  • Good news. I dug into the third party source code and removed the manual resize functionality. Maybe in the future I'll make this optional, but for now I think it's preferable that the row heights are static. This change will be in the next release.
  • Bad news. The third party control does not allow fixed row height without also allowing resizeable rows. What they've really done is supported a Free Row Height mode, where row height can be whatever the user wants. Unfortunately, I would have to mo…
  • I honestly hadn't noticed this occur. As you probably know, we use a third party code base for this control, so I simply used their API to apply fixed row height. I wasn't aware this occurred as well. I'll look into what it will take to do this or i…
  • A bad typo on my end caused this to break before compile. Looks like I'll be having another minor release soon.
  • No need to apologize. The forums are for questions, and it's always nice (for me) when they don't lead to bugs. :-)
  • The ReportTable works makes a firm distinction between records and rows. Records represent the data as it is stored in memory. Records are static in that the first record is still the first record regardless of visibility or sorting. Rows, on the ot…
  • The next release will have two new methods: CheckAll and UncheckAll.
  • Note that the ColumnDataSource allows you to setup the check box as the columns data so you can set it via the List property along with everything else. This would be ideal if your are defaulting all the check boxes during setup. If, however, you'r…
  • The next release will have two new properties: VerticalGridStyle and HorizontalGridStyle. They will each accept on of the following values: "None", "Solid", "DotSmall", "DotLarge", or "Dash".
  • Currently, no. The current column is a shade darker to give a sense of location, but that's it. I've added this to my feature request list for future releases, but I can't guarantee when that will happen. I know this is a matter of subjective taste…
  • This will be fixed in the next release. AutoPopulate can be slow because it causes all rows to be reallocated from scratch whereas the new fix simply forces a proper redraw.
  • Nothing to see here...move along.
  • The behavior is by design because, by default, the table is fixed to fit the width of the control area. You'll have to set the HorizontalScroll property to 1 to allow users to resize the last column, but this will also allow them to resize columns b…
  • I have a beta build of the next release available for confirmation that I've fixed this and several other issues you've submitted. I'm hoping you have a Pro license so you can get all the updates in one download. Here are the various fixes: Button …
  • FYI, this will be fixed for the next release.
  • I was able to reproduce this problem. I've entered it as a bug into our tracking system and will get this fixed for the next release.
  • Images was something I couldn't get working ages ago and let it die on the back burner. However, this will no longer be the case with the next release. In the next release, the ImageList property will work like before, but there will also be an Item…
  • The next release will have a property called GroupRowContextMenuEnabled which will turn off the built-in context menus for group rows. That will allow the OnItemClick event to fire for group rows.
  • The next release will have a new property called FixedRowHeight that will allow you customize the height for all rows.