AEM: Adding an item in tab/carousel component editor does not reflect instantly - aem

When adding a child component to Tabs/Carosel (or any component that uses common panelselect), it does add a tab but it does not show up in panel selector view (to give it a name). However if user closes and reopens that panel to add item, previously added item shows up

Related

Selected index of dynamically created Accordion

I have a dynamically created Accordion with multiple panes loaded with data from database inside an update panel. on page load first pane is opened by default. when the update panel is refreshed i want the user selected pane to be retained instead of the default first pane.
i tried to get the selected index of user selected pane but was not successful

Attaching an ActiveX TreeView Control into a tabbed Access form

I have a tabbed form in Access and on one tab, I'd like to create an ActiveX TreeView object. When I go to build this object and drag it to the tab, it attaches itself to the general form instead of the tab. This puts the control over top of all the tabs instead of the tab I want it in.
How do I attach the ActiveX control to the tab and not the entire form?
I've done a number of different "moves" to try and get it to attach and I've looked through the options to see if there is an easy way to attach it but nothing actually defines how the control is attached unlike a normal Access form control that is contained in the tab.
I would like to keep the extra forms to a minimum and maintain a single, tabbed form with separate controls on each tab.
Answer:
Make sure to select the tab first and then create the TreeView control. TreeView controls cannot be attached to a tab page by drag/drop.
If done correctly, the control will be placed on the tab page just under the tab name within the borders of the tab page. A quick test by selecting other tabs can be done to check that it attached to the right tab and only that tab.

Is there a way to click on selected object on jubula?

I'm using Jubula to automate a JavaFX application. The problem is that, when I selected a tabbed component, I want to click right on this component. However, this component isn't mapped cause I selected it with index.
Is there a way to click on it with the right button?
If the mouse in in the component, Jubula does not change the position for the next action(except it is specified in the action).
This means if you select the tab with the select tab action. You could do another action e.g. "select context menu" at the exact same position.

State of ColumList in SAPUI5

I have a SAPUI5 m.columnlist contained inside m.table. I am supposed to click on any one of the item of columnlist which takes you to new page. From new page when you navigate back to the old page, the list scrolls to the top. I wished to maintain its state from where it is clicked and that item to be selected which was selected previously.
Getting no idea ho to go ahead with this.

Windows Forms Error Provider does not display in custom tab control

I'm trying to build a Wizard framework in Windows Forms. I've managed to glean a lot of useful tips from this and other sites which have gotten me very close to success. However, I'm having a problem with displaying an ErrorProvider on any tab page other than the first page of the wizard.
My Wizard control is a UserControl. It contains a custom tab control that I've derived from TabControl so that I can hide tabs and ignore attempts to navigate between tabs using keypresses, along with the usual collection of Back/Next/Finish/Cancel buttons at the bottom of the control.
I've used reflection to allow me to raise the validation events on a particular TabPage that belongs to the Wizard Control when I hit the Next button. (I don't want to validate the whole TabControl, only the currently active page.) When I do this, I see in the debugger that my Validating routine for the controls on the current tab page is correctly called and I see that I've called the ErrorProvider that I've attached to the particular control (a TextBox in this case) with a valid error message. I set Cancel to true for the CancelEventArgs in the validating routine and that's picked up by the code that uses the reflection mechanism so that I see that I've failed and don't change tabs. And I set the focus successfully to the control that failed validation.
So all that appears to be working just fine.
Unfortunately, I don't see the ErrorProvider's cheery blinking icon unless I'm on the first tab page. For all of the other tab pages, there's no message visible at all.
I'm baffled. Any thoughts? I can provide code snippets, if helpful.
Thanks!
I assume that in your case the button that moves to the next step of the wizard is placed outside (below) the TabControl
I noticed that the icon is displayed correctly if I pressed the button without releasing the mouse button. It seems that the button outside the container gets focused event though a validation error has occurred (normally you would not be able to leave the active control).
I worked around this issue by registering an event handler for the buttons MouseUp event to "refocus" the TabControl:
private void cmdOK_MouseUp(object sender, MouseEventArgs e)
{
tabControl1.Focus();
}
Note: you also need to set your forms ActiveControl property the one of the controls that failed validation.