user-interface

Open Jquery Dialog Server Side

Hello. Is it available to open jquery Dialog Server Side From Behind Code in asp.net? Please give me an example or a link for more information. thanks. ...

WPF UI not updated upon property change

I'm not sure what I'm doing wrong here... I have a custom HashTable that has a method that allows someone to delete a "partNumber" (a value) from the HashTable. The delete method is as follows: class COSC202HashTable : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; //.... private List<i...

QListWidget and Multple Selection

Hi all, I have a regular QListWidget with couple of signals and slots hookedup. Everything works as I expect. I can update, retrieve, clear etc. But the UI wont support multiple selections. How do I 'enable' multiple selections for QListWidget? My limited experience with PyQt tells me I need to create a custom QListWidget by subclassi...

Qt Creator - How to write the UI?

Hi, I'm beginner to Qt and I see that most of widgets that are build in in Qt do not appear in the widgets tool box. How can I add all the widget to tool box? (Like QSystemTrayIcon that does not appear by default in tool box) what is the best way to write gui - by the designer - ui file or by code - cpp file? Thanks! ...

Is there any iPhone/iPad UI toolkit such as BWToolkit for Mac apps?

Just wondering if is there any user interface toolkit for iPhone or iPad such as BWToolkit for creating nice interface for apps. Cheers ...

Android: selector for highlighting menu items?

Hi, while I'm able to set "highlight color" for ListView items using android:listSelector attribute and appropriate selector, I'm unable to do the same, or something similar, for Menu items - they just keep using default system color scheme. I've read Creating Menus article and found nothing there. Any clues? Btw: I'm referring to Me...

Jquery ui autocomplete - multiple sources

Hi. For 1 source this is the correct code after the ajax call: url: "links2.xml", I would like the source to be multiple xml files. How do I include the extra paths? Thanks. ...

Need help building a Calendar UI for Android 2.2. Any suggestions on how to start?

Hi, I am building a Calendar Application for Android OS. I have previously made some Android applications with built-in android widgets such as buttons and spinners etc. Now I want to create an Android Application that displays 4 'tabbed' views of a Calendar (month, week, day & list). I have already built the backend stuff for the appli...

how can I drag nested UL's in jQuery's UI?

I have the following setup: <ul class='_lscolumn'> <li>column1 <ul class='_lswindow'> <li>window1 <ul class='_lslink'> <li>link1</li> <li>link2</li> </ul> </li> <li>window2</li> <li>window3 ...

Triggering event handler attached to it's own object, but inside a chain?

Right now I have: $("#myElement").bind("buildTimeline", function (event, newViewObj) { curDomObj = $(this).children(".timeline"); //this refers to #myElement curDomObj.draggable({ axis:"x", drag:curDomObj.trigger("drag") }); }); I'd much rather just have one chain, but is there a way to refer to the curren...

Tab should take me to the submit button but it is not

I am using ruby on rails and I have a form with one text field, two drop down fields and one text area. In chrome after entering the title, I can hit tab (not mouse) to go to next field. I can do all the way and I can go to submit button and then cancel. However in firefox a tab from text field takes me to the next text area. It skips ...

draggable connect to sortable (change the id)

Hi, I have a ui draggable that connects to a sortable list with helper clone. $(".mydrag").draggable({ helper:'clone', handle: '.drag', connectToSortable:'.new', start: function(event, ui) { console.log(ui); var id = ui.helper[0].id; ...

multiple user interface dll in MFC application

I have existing MFC SDI application that uses classic menus, now i want to add ribbons, but keep the old menu style too, with the option for the user to be able to change to whatever style he wants clasic/ribbon. Currently the UI code is placed in the exe, but I am thinking of making two MFC .dlls - one for classic and one for ribbon UI,...

How to interface a simple keypad with the computer and mobile using PYTHON?

The problem is that i want to interface my mobile phone with my computer using a keypad in between. The interfacing should be done in Python environment as this would help me in my further work. the things which i need is 1.inteface my computer with the keypad using python 2. interface the same keypad with a mobile phone so that i ca...

How does the *NIX GUI work?

I would like to know more about what makes the GUI on *NIX systems work, but not quite sure where to begin the research. From my understanding, the X server is what makes all the visuals possible, and atop that there are the various UI environments like KDE, Gnome and others. But, for instance, I have always thought that running under ...

jQuery UI dragging nested sortables to sortable tab

I'm combing a lot of things jQuery's UI can do, up to a point where I got lost... I set up a sample at http://jsfiddle.net/Patrick/uAKvx/. let me know if you have a problem getting to that. Anyway, I am able to order links and drag 'em to other windows, and I'm able to do the same with windows and columns. What I want is to be able to d...

Async image downloader

I have write a little class to perform the download of the images by using an NSURLConnection. The idea it's to delegate the download to this class to avoid to block the execution. So I pass the target UIImageView (by ref) and the url to the function and start the download: -(void)getImage:(UIImageView**)image formUrl:(NSString*)urlSt...

Choosing language

Choosing language I see http://github.com/ and OpenBSD.org got 2 examples how to. Github has a dropdown and openbsd.org just links. Which kind of UI for this use case could you recommend? I now take the parameter hl=el for instance for greek which switches i18n internals to greek or other language and present available languages like thi...

jQuery UI draggable force update

I am trying to set the values in $(element).data("draggable").offset.relative.top but the new value isn't updated until the mouse is moved, Is there a way to update this value right after it is set? ...

Python3 and terminal widgets

Hi, I'm looking for a terminal UI library having widgets (like buttons, checkbox, ...), and compatible with python3. I tried : pycdk (pyrex does not work with python3, and porting it is a mess) urwid (does not work with python3, it has a port but not working well with new curses interface). Does anyone know such a library ? Thanks...