is it possible to put an image icon beside the button in a form? I was searching for it and find no clue about it. Can you help me or give me reference so that it can clear something up. Thanks!
If you are using LCDUI, no there isn't. But if you are using LWUIT you can use Button.
Related
Please help I would like to hide the logo from the top left corner, leave only the company logo.
I've tried but I couldn't find any possible solution, any help will be very appreciated
I don't believe that is possible, without dynamically editing the DOM. I can't think of a reason why NetSuite would want to allow people to hide that logo.
I have a wireframe in Balsamiq.
I know how to link to another screen.
I would like to click a button and open a popup on the same screen. Is it possible with Balsamiq?
Unfortunately, this is not something you can achieve in our little tool which has low interactivity on purpose, as detailed here: https://blogs.balsamiq.com/ux/2011/06/17/why-we-arent-doing-interaction/
The Linking feature is indeed the best way to achieve this result in Balsamiq Mockups.
Please let us know if you need anything else, we're here to help! (support#balsamiq.com)
-Virgin from Balsamiq
I'm new to Android development.
I'm using drag and drop to pull down a default spinner onto my layout.
However, the default is not the one I see everyone using with the triangle on the bottom right.
An example of what I see is:
http://www.mkyong.com/wp-content/uploads/2011/11/android-spinner-demo1.png
Whereas what I'm looking to achieve is this:
http://i.stack.imgur.com/X82Ld.png
Is it a styling issue?
Apologies for ripping off other people's images, I don't have enough rep for uploading my own images.
Thanks so much!
I've Solved my issue by setting the Theme of the application/activity to Holo.Light. Hope this helps other people in the process.
I have spinner in my activity. When spinner is clicked, drop-down is shown.
Now, Change orientation. That drop-down is not maintained.
Is there any way to shown drop-down again on orientation change?
Thanks in advance.
Your question is a bit unclear to me.
Please try adding this to your <activity> in your android manifest:
android:configChanges="orientation|screenSize|keyboardHidden"
See this for details
(Some might say this is not the right way to do it, but you can use this until you find a better solution)
Could you please help me !!!! For example, I load some page into opera/Firefox etc., there is a text on the page (which is a link). What I need is to find position of the text on the screen and send mouse click to that position. Is it possible to do? If you can, give an example please!!!!
Use jquery. Examples on the site as well, for example: http://api.jquery.com/category/events/
You won't need to find the position of the link to click it. If using jQuery, the code would look something like:
$('a#id-of-link').click();