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
-
Good catch. I had made some changes recently to handle tabs and those changes messed up word wrapping. This has been fixed for next release.
-
This was a tough one to fix, surprisingly, but I finally isolated the problem and repaired it for next release.
-
I will give you a link to a pre-release build as soon as I fix the other issue you posted about.
-
Sorry for letting this slide. I was able to recreate the issue, which was unique to multilined cells with CRLFs, and fix it for the next release.
-
This was definitely a bug. It has been crushed for next release.
-
The ShowImmediately attribute tells the cell that it should show the dropdown immediately when the cell enters into edit mode. If you cell is set to default to navigation mode, then it won't show until the user double-click or presses the assigned e…
-
I'd like to see more of your setup. Are you setting CellType before adding your other columns? If so, then the other columns are copying their attributes from the first column.
-
This only works in SRPControls.ocx 3.1.4 or SRPEditTable.ocx 3.0.7. Is that the version you are currently using?
-
Note that AllowDeletions is on by default, but if the user is in edit mode, then the delete key doesn't delete a row since it's expected that it should only delete a character. If, however, the user is not currently editing a cell, then the row will…
-
Our philosophy with multi-valued properties is to treat empty values as "leave the existing value alone." This is due to our desire to change individual values without having to first read the property. This leads to conflicts of expectations in cer…
-
Oh, I forgot that I recently had to fix this. Go to our downloads page and get the latest version.
-
You might be fighting with the ResetSelPos property. By default, this property is enabled because it emulates OI table behavior, which is to reset the position to the first cell as soon as the table gets focus. You can either set ResetSelPos to 0 o…
-
You've certainly earned this little feature with all the time you take to provide sample code and detailed recreation scenarios for me. It was to your benefit that this feature turned out to be very easy to add. When it's released, you'll simply set…
-
Your code helped me resolve the issue. This will be fixed for next release.
-
I was able to update the cell rendering logic to render the tab stops correctly, so that will be fixed in the next release. I still couldn't get the error box, so let me know if that's happening consistently and we can figure out how to replicate it…
-
Does it give you the SRP dialog consistently? I can recreate the tab rendering issue, but I can't get it to error out (which is essentially what happens when that dialog appears).
-
Yeah, this is the same issue as the CellMerge thread, so we'll call this fixed for now. I'll let you know when there's a release (or prerelease) build available.
-
So far I've been unable to recreate this. I presume you're using the ShowContextMenu method and the OnContextMenuClick event provided by the control? Are you also using the table's built in Cut, Copy, and Paste methods? It always repaints as soon as…
-
So, the cut/copy/paste is done on the cell that is currently in edit mode? And it's that cell itself that isn't updating? FWIW, when a cell is in edit mode, it's really just an EDITLINE control floating in place of the cell, so I don't see why the s…
-
You're right. It had to do with background color. This has been fixed for next release.
-
I can't recreate this one with a simple use of CellMerge and Multilined. The screenshot indicates that the multilined popup is failing to custom render the window border, which is why it looks like a regular window. This pretty unusual. If this issu…
-
Try downloading them again now and see if it's fixed. I think it was just a bad compile.
-
There is a way to override the icon, but I'm not convinced it will look any better. Something clearly didn't compile correctly. I'm looking into it now.
-
Matt, This has been fixed for next release. It was a bug related to logic attempting to make drawing more efficient through clipping, and in this case, it was clipping out the entire border.
-
I investigated this issue further, and I discovered why it hasn't bothered us in our applications. Usually, when you switch tab, focus should be moved to the first control on that tab. In your test window, that was not the case. Focus was remaining …
-
Good catch. This will be fixed for the next release.
-
Some of the code for ScrollPos got mysteriously deleted with the last release. ScrollPos will work as advertised in the next release.
-
Colin, Does the DataRow property (see attribute <3>) do what you want?
-
This was certainly a bug and will be fixed in the next release.
-
This looks like a bug. It appears that the selection is being moved to the first column, which is hidden, on each new row. I'll take a look at the code as soon as I can.