Bug #3604
closedPossible bug on 'setObjectName' with WTableView
0%
Description
Hi,
For my application I switched from Wt 3.2.3 to the latest 3.3.3.
Most of the UI works/seems still OK, however on one particular part I always get an 'Wt internal error'.
It seems caused by a 'setObjectName' call on a WTreeView object.
If I comment out setting that name, it works OK.
Setting the object name I do for my testcases, which find UI controls by name.
The example application TreeViewDragDrop also gives problems when the 'SetObjectName' is called on the WTreeView object.
Not an 'Wt internal software error', but the display of the page is clearly not as it should be.
E.g. by adding a line to TreeViewDragDrop.c below line 358.
/*! \brief Creates the folder WTreeView
*/
WTreeView *folderView() {
WTreeView *treeView = new FolderView();
treeView->setObjectName("MyTreeView"); // <--- this line messes up the display
Attached are screenshots of the example application and the 'Wt internal error' of my own application.
Files
Updated by Koen Deforche about 10 years ago
- Status changed from New to InProgress
- Assignee set to Koen Deforche
- Target version set to 3.3.4
Hey,
This is indeed a known limitation which we can fix.
Regards,
koen
Updated by Koen Deforche about 10 years ago
- Status changed from InProgress to Resolved
Updated by Koen Deforche about 10 years ago
- Status changed from Resolved to Closed