IBM Rational Doors : all changes are lost in module after closing - ibm-doors

That is, after adding new columns and objects to a module and closing/saving these changes, I manually reopen the module and the columns are gone, although the objects remain in their appropriate places. can anybody tell me how to solve this issue...

You need to save the View, not just the Module.
The following Procedure is taken from IBM's Help Page
Procedure:
In the module window, click View > Save As.
On the General tab, type the name. To overwrite an existing view,
type the name of the view you want to overwrite. Note: View names
are case sensitive. To overwrite an existing view, you must type the
name exactly as it appears in the Views list.
Optional: Enter additional information about the view in the
Description box.
Optional: Select or clear the Remember Settings for options.
Optional: Select a Default option for the view. The default view is
the view that is displayed when the module is opened. If you do not make it a default view, it is listed in the views list and can be
selected when the module is open.
Use the Access to this view section to define whether the view is
private or public.
Optional: Set additional rules for the view on the Advanced tab.

Related

Unknown symbol 'textbox1' in class container-gambas error

I had copied data from one form to another previously and it worked bt right now when I am trying to copy the detail of field 'PASSPORT' from login.form to from_to.form it shows an error.
here's the login.form
and here's the from_to.form with error
Controls are not properties of their forms, and moreover they are not (by default) public.
In other words, you access controls by using a global variable having the same name as the control, and only from inside the form, as that global variable is private.
As mentioned above the controls are private to each form and not visible to each other unless you make them public.
You are trying to access login.TextBox1 from another class.
To access login.TextBox1 from the from_to.class you must do one of the following...
In the IDE on the login form select TextBox1 and set it's Public property to True.
or..
Open the project properties and select the "Make all controls public" option. this makes all controls visible across all forms.

Import Umbraco property editor

We have site where a user went to the Data Types, saw we had a Content Picker data type using "(Obsolete) Content Picker" (Umbraco.ContentPickerAlias) and changed it to Umbraco.ContentPicker2
Our code relies on the obsolete one currently and now he cannot set the content we want him to.
Is there a way to recreate/reimport the Obsolete property editor into Umbraco?
On the Data Types node you can click on the ... and create a 'New data type' - then select the obsolete one to create it again.
But in theory, I believe you could just do the opposite of what the user did, on the ContentPicker click edit and pick the property editor from the dropdown if available?
Within the umbracoSettings.config file, there is a property you can create/set to true that will make obsolete data types become available to use against data types
<showDeprecatedPropertyEditors>true</showDeprecatedPropertyEditors>

Is it possible to add dynamic option to SettingsPane?

I use a SettingsPane to manage application settings. I want the user to be able create any number of Account option. This is a parent option which have children options like name, server, port, user and password. Each of them has extended description. If I add a new option through a button, SettingsPane doesn't show new option in the list. My first approach was to try to recreate SettingsView but SettingsPane creates additional views named Group_View_[Option Caption]_0_1 and Extended_View_[Option Caption]_1_2 which must be removed before recreating the SettingsView otherwise it throws an error like 'View must be unique'.
Is it possible to reload a view once it is created or to add dynamic options to SettingsPane?

Umbraco - Edit a custiom data type

I want to modify an existing custom data type in Umbraco. I tried to look for an option but somehow I can't see the Edit option in context. Does anyone have an idea about this ?
Your help is much appreciated.
Thanks!!!!
To create your own Data Type click right on the Data Types folder in the Developer section of the Umbraco Admin page select create and type in the name you want to call it.
A panel will then be displayed where you can choose which data type you want in the Property editor.
When you press the save button the settings relevant to the data type you have chosen will be displayed. They will also always then show up when you select that data type in the data types tree.
These are the only data type settings you can change in the Umbraco Admin section I know of.

Too many options in the View Data Class select list when creating a view

Is there a way to restrict the options available in the view data class select list in the MVC add view dialog box. I really would only like to have models from a single assembly in it?
Just skip the ViewData class and type it in manually after the view is created. I find that faster than scrolling through that awefull list.
When you start typing the list filters itself so that you can find the type more easily.

Resources