Actions
Bug #13775
openRemove character limitation on TreeViewNode::addColumnStyleClass
Start date:
06/17/2025
Due date:
% Done:
100%
Estimated time:
Description
Adding a class to the TreeViewNode uses a WStringStream under the hood. There 'WStringStream::c_str()` is used. This is limited to 1024 characters.
We can omit this dependency, as the styleclasses added by Wt itself, are UTF8, and any styleclass provided by the developer have been added with WWidget::{add/set}StyleClass(). Making them UTF8, and thus not requiring this step again.
The call can thus rely on WStringStream::str(), which is not limited to 1024 characters.
Updated by Romain Mardulyn 5 months ago
- Status changed from New to InProgress
- Assignee set to Romain Mardulyn
Updated by Romain Mardulyn 5 months ago
- Status changed from InProgress to Review
- Assignee deleted (
Romain Mardulyn)
Updated by Matthias Van Ceulebroeck about 10 hours ago
- Assignee set to Matthias Van Ceulebroeck
Updated by Matthias Van Ceulebroeck about 9 hours ago
- Status changed from Review to Implemented @Emweb
- Assignee changed from Matthias Van Ceulebroeck to Romain Mardulyn
- % Done changed from 0 to 100
Actions