Do we have dropdown widget in maximo anywhere - maximo-anywhere

We have a requirement to display drop down with values inside maximo anywhere app. Does maximo anywhere has such a widget? I could see view , button, dialog widgets in maximo anywhere

All the components provided by the platform are listed in app.xsd resource.
Maybe the element called combobox may fit for your need. To check its required and optional attributes use also the app.xsd file.

Related

Manage QWidgets' action lists in Designer / Creator?

Is it possible to manage the list of a given widget's actions directly in Designer and/or Creator's UI Editor? Creator 4.14.0, Windows.
By "widget's actions" I mean the ones set with e.g. QWidget::addAction.
Right now I just set up any action lists explicitly in the window's constructor, but it would be nice if I could just manage the list in the GUI. I poked around in the UI editor's various context menus and in the Action Editor pane, but didn't see anything. I couldn't find anything in the Properties pane either.

Why does AEM component not drag to the page?

I am just getting my head around AEM version 6.2 and struggling to create a component that I can drag onto my page. I copied an existing 'working' component and changed the name in the CRXDE page. The result is the new component is visible in the left components panel but when I want to drag it nothing happens? How can I create/copy an component that is draggable?
For a component to be droppable inside a parsys, it needs to be added using design mode...
Go to design mode
Configure that parsys
Select the component which you want to drop inside parsys
Go back to edit mode. It should now be droppable.
I suggest you to add some text in the component jsp. Make sure cache is deleted. Also try to cq:include the component in your page component.If you are unable to do so will mean there is something wrong with the component development.

let npapi windowed plugin droppable

I create a windowed npapi plugin on windows, and expect when dragging a file over the plugin, the cursor shows the
accepting drop effect.
For the aim, I tried the following two methods, which both work well in native window app.
call DragAcceptFiles(hwn, TRUE) for the npapi plugin's native window handler
create a IDropTarget class for the handler
But both show forbidden drop cursor. Any idea?
A plus, the program's architecture is Qt embedding CEF.
#Georg Fritzsche and #taxilian give the answer, add a child window to the windowed npapi plugin.
And do drag and drop in the child window.
In my project, I use another solution, described below.
Provide a drag move api in windowed npapi plugin.
This native api handles mouse over test, cursor set, fire custom event so etc.
When drag and drop started, trigger a timer in javascript end to call the api.

Qt creator - make a dynamic interface

I am working on a small UI with QT Creator and its drag-n'-drop tool (QT Designer). Everything was fine till I realized I had to make some widgets dynamic. For example, I have a checkbox and I want some button to appear only if this checkbox is checked by the user or I would like to change the appearance of another widget when the user clicks on some button.
Is it possible to do it only with QT Designer?
Yes, but it's very limited.
Qt designer have signal&slot editor. Yes, you can connect signal clicked(bool) to setVisible(bool) slot on button and make button visible only when checkbox is checked (see screenshot).
But when You need more complex dynamic interface (e.g. creating buttons), designed will not help You.

open new tabs on NavBarItem clicked in Devexpress

I'm developing some Windows forms app with Devexpress, and I have something like below, a set of tabs are open which are related to "System parameters" and I want to a new set of tabs to open in place of older tabs when I click on Error navBarItem and also it should be vise versa, I saw this in demos but I don't know how to do it myself, thanks
I suggest you use a UserControl for each set of options, and when you click on an item of your navigation bar, you do the following :
Set the visible property of the current user control to false
Check if the user control associed to the clicked item exist, if yes, set it's visible property to true (reactivate it), otherwise, create an new instance of it, and dock it.
To manage this, you should have a a list of the user controls already opened, so you can reactivate them when needed.
This link may help you :-)

Resources