How to add element into the palette view - IBM Mobile First 6.3 - eclipse

I am developing mobile apps using IBM Mobile First 6.3 with JQM. I need a clarification that, is there any option for adding element into the palette view and also can we create some variable with default value and keep it any view, so that when we needed we just drag and drop into the function so it will be available.
This link found when surfing, but no answer is posted.

The Palette view is part of Eclipse, so you should refer to Eclipse: http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.wb.doc.user%2Fhtml%2Fuserinterface%2Fpalette.html
MobileFirst Platform populates the palette view based on the used jQuery Mobile .zip that you provided; there is no support to add elements to it. You might be able to based on the Eclipse documentation but this is not a supported path by IBM.

Related

Is it possible to create a dropdown / select field using Amplify Studio UI & Figma?

I'm trying to use AWS Amplify Studios's UI Library with Figma to create a dropdown component.
I've followed the AWS docs Figma to Code page and set up the AWS Amplify UI Kit. I've successfully got simple text elements updating from the Amplify database. The UI Kit also contains components with dropdowns, but I can't find any information anywhere as to how to design this in Figma. Is it possible?
Studio doesn't currently support importing select lists due to some of the ambiguity in how it would handle importing the options. There is a backlog item to allow them to be imported and configured with options after the fact within Studio. We don't have a timeline for when that would be released though.

SAP FIORI Tools - Filter generated via XML UI local Annotations, require to display Clear button

I am exploring XML Annotations on WebIDE. To display filters, have added SelectedFields. I want to add reset or Clear button with Go Button. Could you please update property to add such button via annotation.
Thanks in advance for your help.
Regards,
Bhuvenesh
As you are using Web IDE, you can enable these buttons with the help of SAPUI5 Visual Editor i.e by creating flex changes.
Additionally, I would recommend you to explore new SAP Fiori tools on VSCode and SAP Business Application Studio https://marketplace.visualstudio.com/items?itemName=SAPSE.sap-ux-fiori-tools-extension-pack
Documentation https://help.sap.com/viewer/product/SAP_FIORI_tools/Latest/en-US

Adding item to Contextual menu and send highlighted text to other app on MacOS

I'm trying to add a item to the global contextual menu in MacOS. Not by the user but by the app I'm writing.
Here's the scenario:
User installs my app, which should add the item to contextual menu.
When in another program the user highlights some text and "right clicks"/brings up contextual menu where the item added by my application should be shown.
Anyone know how to do this?
I can't seem to find any documentation on how to add a item to the global contextual menu in macos without the user adding it as a service them selfs. I wan't this to be done when installing the app.
What you're describing is known as a "Service". The facility in general is sometimes known as Cocoa Services. See the Services Implementation Guide for details on how to have your app provide a service.
An alternative solution would be to create a share extension.
You could read about extensions here and specifically about share extension here.

how to put a comment while creating a version in aem 6.1?

I want to put a comment in a particular version of a page.
It gives an option to put the comment but its not specific to a particular version.
Is there a way to put the comment while creating the version in AEM6.1?
You Can always create a comment while creating a page version from your Sidekick "Versioning" tab
Good Observation. As per the Adobe Documentation AEM 6.1 working with page versions These are the steps to be followed to created the version of the page.
You can create a version of your resource from the timeline tab:
Navigate to show the page for which you want to create a version (In fact it is parent level).
Select the page in selection mode.
Open the Timeline column.
Click/tap on the arrowhead by the comment field to list the options:
Select Save as Version and confirm with Create.
The information in the timeline will be updated to indicate the new version.
And here i have noticed that the comments pushed via touch UI is not considering while Version node creation.
A little close observation at the node version properties that got created for the Classic UI vs Touch UI versions for the page. The cq:versionComment is missing (not created) for Touch UI process.
The verions 1.0 and 1.2 has created with touch UI and version 1.1 created by using Classic UI

Intellisense using phonegap

I need to develop an app for iphone using phonegap
I want to have a drop down box which has the capacity of intellisense.
Like when i type 'A' in the dropdown box, all the data elements listed with 'A' should be a part of drop down. Is this possible?
Yes you should be able to create an autocomplete drop down box using something like jQuery -- for which there is already a plugin to do that: http://docs.jquery.com/Plugins/autocomplete
You could write it from scratch but there are already a lot of autocomplete JavaScript libraries.