I'm receiving a touch down event on an ordinary button when I touch the button (simulator using magic mouse).
Problem is, locationInView of the event is (x=313, y=162), but frame of the button is (x=287, y=149, width=22, length=22), and 287+22 = 309 < 313. All of the above for view rotated to the left (home button on the left of the si...
Hi to all dear!!
I have a form which contains one tab contol with 3 tabs. How do I refresh only one tab page in the form with a backgroundworker thread and not refresh the other tabs?
...
I am making an application that asks the user for userid, appends the userid to a static HTTP link to retrieve the user's daily schedule info file that has a .ical (calendar) extension.
I need to read the data from file, format in new UI and representing some useful data on an Android device.
My query is can I access a static HTTP link...
I have a case where I am getting lots of sockets requests coming in. I would like to update the UI 3 seconds after the last socket request has come in. E.g If socket request comes in and the previous one was only 2 seconds ago it should clear the UI Update and start waiting for 3 seconds.
Notes:
Each Socket Request comes in on a differ...
Hi,
Im developing for both iPhone and Android. For iPhone im using iUI to show what the user interface would look like from a browser. Does anyone know if there is a similar javascript/css library which would allow me to mock up the Android interface?
...
Hello,
I'm searching for a tooltips that should function within a UI dialog, but after searching and testing several tooltips (like cluetip) i have no succes.. :-s
I've tested jquery Cluetip. This tooltip showed up when i mouve the mouseover a link/img, but the tooltip has showed BEHIND the ui dialog... ??? A z-index problem i guess. ...
I have to present a prototype of an web app in the following days to one of my clients, the thing is I'm not so good at CSS and worst of all I'm almost never happy with the results I get.
Coding the business logic poses no challenge to me, the UI design however takes more than 80% of my time. I don't need nothing breathtaking, just a cl...
I have a number of graphs I'd like to display, each one with a corresponding text.
With the size of the area to the left as your only constraint, I'd appreciate suggestions on how to make the interface intuitive and stimulating (if there's any contradiction?).
In this mockup, there are basically 2 modes:
1) A graph tree menu is shown ...
Hi guys, slightly different type of question.
I am linking from a UITableView item to a contact item.
What would be the groups thoughts on the two below concepts:
1. Use of an accessory on the MainTableView to directly link to the contact page:
You Click the Blue Arrow on the RHS to goto the contact
2. Use of an icon inside a Detail...
After always running monolithic blocks of code from within my AppController object, I've just learned how to modularize my code using separate model controller objects (so much neater and less confusing to work with :-))
My simple test app has a main AppController and two model objects (Model1 and Model2). I can successfully pass data f...
My company develops a rich GUI from a detailed specification document, written as 100+ Use-cases (UC's). These detailed UC's drive the development. They are written as tables with actor and description columns. We (me and others) have mangled real UC prose style to support the interactive nature of our application.
We also use the spec...
I have a "dumb" custom Android widget (as in View, not a home screen widget) that I need to have retain some state during screen rotations. This PlayerWidget is essentially a media player UI with some buttons (back, forward, play/pause) and a progress bar. It exposes the important bits of UI via getters.
There are a few separate Activ...
If a JFrame has a JDialog modal open, the JDialog is animated (the borders and title bar have a lighter colour) if any other part of the application is clicked other than the JDialog with focus. The user is made aware of the window in focus to attend to first.
I have a Swing application with custom dialogs, setUndecorated(true) and cust...
We're creating a web app which is going to designed to be fully 2.0 (AJAX-ed and what not).
As a rich-client and server-side developer, I know Javascript only at a functional level, but I'm beginning to learn JQuery based on recommendations and seeing how simply much of it.
I've found things like SlideDown in its' API which will slide...
Hello,
I am trying to add a Browser Field onto my Main Screen. Currently, I have:
public class BrowserFieldDemo extends UiApplication {
private MainScreen _browserScreen;
private BrowserField _bf2;
private BrowserFieldConfig _bfConfig;
public BrowserFieldDemo(final String url) {
_browserScreen = new MainScreen();
_bfConfig = ...
Hi,
In a winforms application where the UI code calls business methods in my business classes, is it best practice to pass errors back to the UI code as an exception?
Also if there are say a couple of main types of exceptions that a particular business method may have, where would it make sense to tailor the text that gets presented ...
Is there any idea (library or methodology) to create multithreaded apps in JavaScript?
...
I'm working on a Eclipse RCP Application. In a class which extends MultiPageEditorPart, i'm trying to set the focus to a text field. But the setFocus Method always returns false.
What am i doing wrong?
The MultiPageEditor has various pages and inside these pages, there are Composite - classes. These classes contain the text field.
H...
Setup
I have an accordion layout containing a "properties" panel that nests two inner panels. The first inner panel holds a Ext.DataView, while the second panel is the Ext.grid.GridPanel in question. In the screenshot below, the white space containing the folder icon is the dataview, and below that is the gridpanel.
Problem
In Fir...
I have the same initial problem as described in Integrate NSStepper with NSTextField:
I need to have a NSTextField working with a NSStepper as being one control so that I can edit an integer value either by changing it directly on the text field or using the stepper up/down arrows.
Using bindings as commented on by carlosb results ...