expressappframework-119123-ui-construction-application-model-ui-settings-storage-model-editor-unusable-nodes.md
In XAF, an Application Model has a layered structure. Model generators and updaters create the first layer based on the current Business Objects Model. This layer is a base application structure without any differences. Refer to the Business Model in the Application Model topic for additional information.
Higher layers are built based on the custom Model settings from the modules’ and applications’ XAFML files and a user’s Model Differences (from a XAFML file or database). If a higher layer’s settings cannot be applied to a specified node from the first layer (node with this name does not exist), these setting are replaced in the UnusableNodes.xafml file.
If your application contains unusable nodes, it displays the following warning message when you customize your Application Model using the Model Editor:
You can also show unusable nodes in the Model Editor by clicking the Show Unusable Nodes button.
Settings can be replaced in the UnusableNodes.xafml file in the following cases:
There were changes in the default application model schema and the new schema does not recognize your nodes.
There were changes to your business classes’ structure regarding renaming and removing attributes from a class and its members, as well as declaring new and removing previous members in the class.
This section explains in which case settings are moved to the UnusableNodes.xafml file and how you can restore them. Navigation items’ settings are used here for demonstration purposes.
In XAF, navigation items are generated from business classes marked with the DefaultClassOptionsAttribute or NavigationItemAttribute. The navigation items decorated with one of these attributes are placed in the corresponding navigation group. The DefaultClassOptions attribute places the navigation item to the Default group. The NavigationItem attribute allows you to specify the name of the target group (to learn more, refer to the attribute class topic.
You can modify the navigation item collection by the following ways:
Then, if you remove the DefaultClassOptionsAttribute and NavigationItemAttribute from all business classes, all differences which were applied to the first and second ways are moved to the UnusableNodes.xafml file. This occurs because the navigation items that were created for the classes decorated with these attributes are removed from the Application Model. So, these differences cannot be applied to the corresponding nodes. These differences are saved in a XAFML file as differences applied to the default NavigationItems node because there were classes marked with the DefaultClassOptions or NavigationItem attribute.
If there are no classes marked with these attributes in a solution and its modules, the group nodes with the DefaultGroupName name and names from the NavigationItem attribute are not generated by default, and model differences cannot be applied to these nodes. Note that model differences are applied to existing nodes only.
Follow the steps below to restore the lost settings:
Note
You can use the approach described in the Convert Application Model Differences topic to automatically solve the problem with losing customizations after migrating to a new application version.