Unable to allow editing views for ResultingFromChangeNotices Table
Hi,
I am trying to make the ResultingFromChangeNotices table editable or in other words make it possible for users to create and edit views.
Currently I am overriding the buildComponentConfig method with the following code
public ComponentConfig buildComponentConfig(ComponentParams var1) throws WTException {
TableConfig tableConfig = (TableConfig)super.buildComponentConfig(var1);
tableConfig.setSingleViewOnly(false);
tableConfig.setConfigurable(true);
tableConfig.setShowCustomViewLink(true);
tableConfig.setSelectable(true);
return tableConfig;
}

As you can see, i get the Buttons for customizing the views, however the wrong wizard pops up if i try to create or edit a custom view as i can't edit the view's name in the first wizard step as it is possible normally.

When I try to create a view nevertheless, it never finishes loading.


