load tab on click of radio button in AEM6 - radio-button

I have a couple of radio buttons in one my of tabs in the dialog and based on the radio button selected, I need to display the other tabs(i.e. tab2 or tab3) and initially my tab2 and tab3 will remain hidden.
I have achieved this using drop-down but now need to implement the same using radio buttons.
please help me on this
thanks in advance.

selection xtype can be rendered as dropdown, combobox, checkboxes or radio buttons. So if you have already wriiten logic to hide and unhide tabs based on the value selected in the dropdown, simply adding type property with value radio (string) should ensure that the selection is rendred as radio buttons.

Related

How to handle height of keyboardaAvoidView

I am using keyboardaAvoidView tag and i have one button and one text input box above keyboard but when I click on input box the button gets hide, but I don't want that button to hide, is it possible to set keyboardaAvoidView fixed height so that the button is not getting hide

How to select an item of combobox when pressing a key

I have a combo box with a array of items in string. After i click the arrow to show all the items, i want when i press a key which represent first letter of a item then the respective item will be selected (item is highlighted and NSComboBoxSelectionDidChangeNotification is posted). TextField of combobox is set to not be editable in this case.
I'm new to cocoa and objective and I don't know how to implement this.
I try to implement all methods of NSComboBoxDataSource protocol but the item is highlighted without any notification when i input text to textfield of combobox which is then editable (just a try because i want it isn't editable).
Any suggestion would be appreciated.

I added toggle buttons on the access form like (YES or NO). How to save a value in the table, pressing on the respective buttons

I added toggle buttons on the MS ACCESS 2016 Form like (YES or NO). How to save a value in the table, pressing on the respective buttons and one more action is required, when I press the button change the colour (YES - "GREEN", NO - "RED"). Please help me with this.
enter image description here
Create an option group with toggle buttons, not separate buttons. You can bind the option group to the field in database, it will show selected and saved option.
You can adjust pressed color for each of buttons separately, so select green color for background of Yes button and red for No
If you need 3 state options (both not pressed, pressed Yes, pressed No), create option group with 3 buttons, default is neutral and make neutral button invisible

ToolBar on top of keyboard

How can i show toolbar with "Next" and "Previous" buttons on top of the keyboard on iPad like in ShareKit(when logging in)? I have many of text fields, and i need switching between this text fields by using toolbar buttons
Design your toolbar however you prefer, then set it to the InputAccessoryView property of the UITextField whose keyboard it should accompany. It will be automatically displayed above the keyboard whenever it appears.

Problem with toolstrip renderer in VB.net

I'm using the toolstrip renderer in vb.net, found the source over at:
http://63.236.73.220/showthread.php?t=539578
Now, it works great however the style doesn't seem to stick when I click a button on the toolbar. I use a toolstrip sort of like tabs, and what I'd like is if a toolstrip menu is clicked the style stays so I can visually see what tab is clicked.
Can someone help me out with that?
I figured out the issue... Turns out the default toolstrip renderer supports the clicked item state, so I had to turn on the "checkonclick" to true and then when the the toolstrip button is clicked it shows the selected state, then in the code on the click event I did a loop to uncheck all other buttons in the toolstrip so now it functions exactly like a tab interface using the fancy toolstrip renderer :)