How do I set an optional xcodatamodel attribute? - xcode

I heard there was a checkbox or something but I can't find it anywhere in the XCode interface.

Should be right there in the data model inspector panel.
Press command + option + 3 to show that panel.
Or select the right one in the view button group and select the right tab.

Related

Ultrawingrid dropdown menu scroll down

I am automation tester and using LEANFT C# tool in windows applications.
We have a scenario where I need to scroll down dropdown menu and select the value inside the ultrawingrid. I am able to select the values that are shown in first screen after clicking the dropdown menu. I need to scroll down the dropdown but not able to do it. I tried like below syntax
"system.windows.forms.sendkeys("{PGDN}")"
"system.windows.forms.sendkeys("{DOWN}")"
"system.windows.forms.sendkeys("{END}")"
How to scroll down the dropdown menu one by one and select the values ?

Replace custom menu with Oracle Forms 11g default menu

In my main form window, I have the following menu bar which is used for traversing. Its inherited from .mmb file.
Now, when I select any form on the menu, lets suppose I selected the highlighted "Purchase Order", then I don't want the same menu to be shown. I want the Oracle Form 11g's default menu to be shown instead, picture added below for reference.
I changed form's property of Inherit menu to No and the menu from image 1 isn't shown in "Purchase Order" but I still am not getting the default&smartbar menu.
How can I achieve that?
Thank you.
So I figured out a way how to disable .mmx menu and enable DEFAULT&SMARTBAR menu when I go to another form through the menu.
From the first screenshot above, the on-click-trigger had the following code
call_form(:global.path||'pc');
I replaced it with
call_form(:global.path||'pc',hide,do_replace);
So the addition of
,hide,do_replace
worked.
Side note: Also, make sure Inherit Menu property of Window property is "YES" and Menu Module of form property is set to "DEFAULT&SMARTBAR"
I think in the properties window from the form you got the property "menu module"
If you make a new form it gets the default: DEFAULT&SMARTBAR
So I think it is now filled with your mmb filename.

Going to Specific tab in oracle forms

I have 3 radio button A ,B, C
and I have 3 tab page in the canvas A, B,C.
My Requirement is if user select radio A and press Submit button then tab A Should get activated and my cursor got to tab A.
If it is enabled and visible then you can use the following commands:
go_item('blockname.itemname');
or
go_block('blockname');
If you don't need to go to a specific item then use the second command go_block.
To enable a tab page:
set_tab_page_property('TAB_PAGE_NAME',enabled,property_true);
If the tab page was not visible you should make it visible first:
set_tab_page_property('TAB_PAGE_NAME',visible,property_true);
In order to navigate to that tab page, the easiest way to accomplish that is by going to a navigable item that is in that tab page:
go_item('ITEM_IN_THE_TAB_PAGE');
First you have to set the tab page as top most using set_tab_page_property(top_most_tab_page,'tab_page_name'). after that use go_item('block_name.item_name');
here is the easiest way to do this
In the following code, I supposed that the radio button name is: RADIO_BTN and it's value is 'A'
open submit button properties and set 'keyboard navigation'= No and 'mouse navigation'= No
on tab A create a dummy item (not database item) and name it A, with width=0 and height=0 so the user will not see it, or use a real item name on tab A
open trigger when_button_pressed on submit button and write the following code.
IF :RADIO_BTN = 'A' THEN /*replace this with your radio_btn name and value */
GO_ITEM('A'); /*go to dummy item in tab A or to real item in tab A */
END IF;

Is it possible to click a link in dropdown list without selecting that option?

I have a dropdown list. When users hover on an option, the view link will show up. You can click "View" to see more details of that option. But now every time I click it that option will have to be selected. Is there a way to make it so that when I click "View", I can see details in a popup window and that option won't be selected? Or is there a way to go around it?
I would do this by making the clickable area of the view link (the <a> anchor tag) a container box with a higher z-index than the dropdown option
Then the view link will be on top, and clicking it will link without selecting the underlying dropdown option.

How to use and create Dynamic Panel in Dynamic Form Module in DNN?

I have some controls RadioButton,CheckBoxGroup and TextBoxes.I want to add these controls in this Dynamic Panel . And I have a Combo Box which have values 1,2,3,4,5,6. So when i select 1 from Combobox, 1 panel should display , when i select 2 from Combo box , 2 same panels should display an so on. Please help me anybody.
If you are referring to the Dynamic Forms module by DataSprings, you can create the intended behaviour by using "Question Events". You would first go into each "panel" you want to hide and click the "Hide question until forced visible by question event" checkbox. Then, go to the Question Events page and set up one event for each combobox value, with each one set to display the appropriate "panel". Several demonstrations are available here.

Resources