Tagged Questions

A widget(or control) is an element of a GUI that displays an information arrangement changeable by the user, such as a window or a text box. The defining characteristic of a widget is to provide a single interaction point for the direct manipulation of a given kind of data. In other words, widgets are basic visual building blocks which, combined in an application, hold all the data processed by the application and the available interactions on this data.

learn more… | top users | synonyms

25
votes
15answers
6k views

Are iframes a terrible idea?

I'm building a widget, and I've been using iframes to present content within it. At some point, I might start serving third party HTML and JS, so I thought iframes would be a good idea. It does make ...
19
votes
4answers
6k views

how to add multiple widgets in one app?

I've just finished my Android widget. Now I need to have different sizes of this wiget for the user to choose from. for example I need a medium, small and large size widget. so when the user install ...
18
votes
9answers
20k views

HTML/JavaScript UI widgets GUI builder

I've heard and used some of the libraries like Ext JS, qooXdoo, jQuery UI, dijit. I know there are unofficial attempts to create GUI builders but they are not really great. Any chance there is a ...
16
votes
3answers
2k views

Is it possible to render web content over a clear background using WebKit?

I'm trying to gauge the possibility of a patch to WebKit which would allow all rendered graphics to be rendered onto a fully transparent background. The desired effect is to render web content ...
15
votes
6answers
11k views

Textarea that can do syntax highlighting on the fly?

I am storing a number of HTML blocks inside a CMS for reasons of easier maintenance. They are represented by TEXTAREAs. Does anybody know a JavaScript Widget of some sort that can do syntax ...
13
votes
4answers
4k views

Designing a Yahoo Pipes inspired interface

I really like the interface for Yahoo Pipes (http://pipes.yahoo.com/pipes/) and would like to create a similar interface for a different problem. Are there any libraries that would allow me to create ...
12
votes
7answers
3k views

SVG rendering in a PyGame application

In a pyGame application, I would like to render resolution-free GUI widgets described in SVG. What tool and/or library can I use to reach this goal ? (I like the OCEMP GUI toolkit but it seems to be ...
11
votes
6answers
1k views

Searching for the Ultimate Resizing Textarea

I'm wanting to provide a resizing textarea control for users. I've given this a go and looked at a number of other implementations, but I can't seem to find one that meets all my requirements. ...
11
votes
4answers
3k views

Android custom widget styles: how to put them into a namespace?

In the ApiDemos, there is a view example called Gallery1 which declares a custom style in attrs.xml, as such: <declare-styleable name="Gallery1"> <attr ...
11
votes
6answers
12k views

google analytics - multiple trackers on one page (cookie conflict)

I'm writing a web application that's supposed to be embedded in other people's websites (kind of a widget). I'm using Google Analytics to track all the people that visit all instances of my script on ...
10
votes
2answers
5k views

Dojo and unregistering widgets

I am new to the Dojo Toolkit. I'm getting the error Tried to register widget with id=myButton but that id is already registered whenever I try to load dojo content twice (meaning I load HTML ...
8
votes
3answers
247 views

What Confuses you about Magento Widgets API?

This is a little vague, but I hope I'm allowed. I'd like to get a feel for what the Magento developer community thinks of the Widgets API. Are they clear or confusing, useful or useless. The more ...
8
votes
2answers
5k views

Any good Java Swing Timeline Widget?

Is anybody aware of a good Java Swing Timeline Widget with features comparable to the Janus Winforms timeline component?
7
votes
1answer
87 views

this.domNode is null

I am trying to use jquery to load a dojo chart. I am using this code. However in the second click, in the first button i get this error. The same occurs if i click in the first button, click in the ...
7
votes
4answers
728 views

What gui toolkit should I use with Pygame?

I'm making a game that needs to be able to pop up gui elements within a pygame surface. This question isn't what I want because wxPython goes around the SDL surface, not inside it. So far I've only ...
7
votes
3answers
8k views

What are good Java date-chooser Swing GUI widgets?

What are good Java Swing date-chooser components? So far I've only really found these 2: JCalendar - this one is pretty good as it uses the underlying look and feel. JXMonthView in the swingx ...
6
votes
1answer
5k views

Processing more than one button click at Android Widget

I saw this topic and implement IntentService as describes, but what if I want more that one button? How can I distinguish button from each other? I'm trying to setFlags, but cannot read it at ...
6
votes
2answers
739 views

Easy to use Isolated widgets on rails

I am developing a "game platform" on ruby on rails. It is not a 2D or 3D intensive game but more like quiz games, imagine typical Facebook quiz or even "how big is your brain" kind of games. The ...
5
votes
4answers
4k views

Intent to launch the clock application on android

I am facing a problem with a clock widget i made. I want the user to touch the clock and launch the clock app on the phone. this is the code: //this worked on my nexus 2.1 ...
5
votes
4answers
970 views

JSONP vs IFrame?

Soon I'll be needing to build a widget that some of our clients can embed in their own websites. To future proof my widget the embed code would be something like this: <script ...
5
votes
2answers
2k views

Tutorial required for developing android desktop widgets?

I like to develop a product something quite similar to what is shown here in the following link:http://getclicky.com/blog/221/5000-for-an-android-desktop-widget Could someone provide me with an ...
5
votes
1answer
1k views

Best practices for writing javascript widgets

I have a JS script (widget) which is added to other websites. Technically its similar to Google analytics. My question is: what are your advices for ensuring robustness, keeping the code from ...
5
votes
2answers
844 views

How to avoid name clashes in javascript widgets

I have a javascript widget (a piece of embedded JS and HTML code) that's embedded on other sites. What should I do to make sure it's variable names don't clash with the hosting page variables? I'd ...
5
votes
4answers
2k views

Naming convention for Qt widgets

I'm working with a group of other programmers on an open source project built using C++ and Qt. Now, we need a naming convention for widgets (and other variables generally) to use it as a standard in ...
5
votes
2answers
7k views

How can I format text in GWT label widget

I would like to break a long line of text assigned to the standard Label widget in GWT. I was experimenting with inline <br /> elements but with no success. Something like this: label = "My ...
4
votes
2answers
3k views

A GWT CellTable with frozen header and initial column

I need to freeze the first column and first row of data in a CellTable, so that users can scroll through the data but still see the labels on the "axes." The first column should scroll when the user ...
4
votes
1answer
353 views

What are your best practices when developing symfony 1.4 forms/widgets/validators?

I am currently working on some symfony form customisation which includes writing widgets or better still extending existing ones. However this proves to be much more complicated as I thought it would ...
4
votes
4answers
781 views

How to build a widget for my website

I'm very new to the whole programming - so far I only have experience with building websites, database etc. I currently have a website where users can share their online purchases. I want to build a ...
4
votes
2answers
184 views

Can I turn ON XSS in my browser locally?

I am developing a widget (HTML, JavaScript) for a platform which allows the (trusted) widget to make XSS calls. I can test the code by packaging the widget, and using the emulator, but that takes 2 ...
4
votes
3answers
662 views

Is is possible to host Silverlight widgets from a WPF app?

If I wanted to create some Silverlight widgets and host them within WPF is this possible? I've searched for examples & found a few concepts online but no approaches that actually panned out / ...
4
votes
2answers
6k views

Help to edit the Recent Posts Wordpress widget to diplay in all 3 languages at once

Site link: http://nuestrafrontera.org/wordpress/ I want the feed of recent post titles to show in the sidebar for all 3 languages, separated by language. So, for example, under Recent Posts the ...
4
votes
2answers
3k views

When do I have to call the startup() method of programmatically instantiated widgets?

I create instances of dijit.layout.ContentPane, dijit.layout.StackContainer and dijit.layout.BorderContainer from my JS code. It seems I have to call the startup() method of programatically created ...
4
votes
3answers
467 views

HTML Rich Textbox

I'm writing a web-app using Python and Pylons. I need a textbox that is rich (ie, provides the ability to bold/underline/add bullets..etc...). Does anyone know a library or widget I can use? It ...
4
votes
3answers
648 views

Are ASP.NET Web Parts a viable technology for implementing a portal architecture

Web parts seem to be used extensively in Sharepoint related development, but examples of using them in asp.net webforms applications are few and far between. I'm implementing a domain specific portal ...
4
votes
6answers
6k views

GWT paging widget

I'm looking for a GWT common purpose paging widget. So far I have found GWT widget library and the Google Incubator widgets. Is there any other free (possibly open source) widget library ...
3
votes
1answer
1k views

HTML5 Canvas Library for UI Widgets

I've been looking for a library that can aid in the rendering and functionality of UI widgets embedded within the canvas area, such as combo boxes, check boxes, radio buttons, text areas, list boxes ...
3
votes
2answers
216 views

Javascript Widgets to grab external JSON/XML … How?

I would like to build a little embeddable widget for webpages that will access an API the serves up XML or JSON (I can choose between those two formats). What I'd like to do is have the user just ...
3
votes
1answer
632 views

django calendar widget

I want to have a calendar in my application, so that every user can pick a date, and submit a meeting poll. I tried using the Django calendar admin widget, but it doesn't appear on my page. How can i ...
3
votes
2answers
1k views

Symfony forms: how to change default widget for form generation

I'm using a custom Widget for date fields, and I want to use it in all my forms. The problem is that symfony uses the default sfWidgetFormDate. What I want is to change this default widget in order to ...
3
votes
1answer
2k views

Android: Adding data to Intent fails to load Activity

I have a widget that supposed to call an Activity of the main app when the user clicks on widget body. My setup works for a single widget instance but for a second instance of the same widget the ...
3
votes
1answer
219 views

How to implement translation & rotation widgets for game level editor

I am developing game editor.To detect mouse hit on 3D model I am using mouse picking concept. But I want to implement translation & rotation widgets like other game editor with actual arrows at ...
3
votes
2answers
195 views

DOM object cloner Javascript widget

Could somebody suggest me a widget that can take an existing DOM object (like a table row) and clone it/add it to DOM after the existing original object and also allow to remove it or add others. To ...
3
votes
4answers
968 views

Swapping one widget with another in Qt

What is the best way to "swap" one QGraphicsWidget with another in an existing view? I have a tree view widget and a label widget, and I want them to occupy the same space at different times. ...
3
votes
2answers
414 views

Controling tabbing focus within popup javascript widget context

I'm working on a lightbox style javascript plugin that pops up an image with next+previous buttons and a close button. I want to make it so that tabbing will only jump between the three presented ...
3
votes
3answers
249 views

google chat web client

I am looking for a google chat client that I can embed in my website so visitors can chat with me directly. I haven't found any widgets like the google voice widget in which a visitor is connected ...
3
votes
2answers
2k views

Widgets inside Zend Framework - Where should they go?

I've been working with Zend Framework (using Doctrine as the ORM) for quite a while now, and done a few projects with it. In a few upcoming projects I am requiring the need for widgets similar to how ...
3
votes
1answer
1k views

Lightbox for embeddable JavaScript widget? Like Feedback tabs for UserVoice/GetSatisfaction

There are so many lightboxes to choose from, I'm looking for a very lightweight one to use in an embedded javascript widget that would be used on a number of different web sites. This would work in a ...
3
votes
2answers
2k views

RoutedEventArgs vs EventArgs

I am learning WPF / Silverlight and saw in an MS vidcast that it is now recommended to use RoutedEventArgs over EventArgs; although it didn't say exactly why. I have a win forms app that uses ...
3
votes
2answers
663 views

Qt: Square constraint on window resize

I have a QDockWidget with a single square widget inside. I would like the ``QDockWidget to be resizable, but to always maintain a square shape, whereas by default it can be stretched ...
3
votes
4answers
449 views

How can web technology be used for a C++ application GUI?

Can web technologies be used for a desktop application written in a traditional language like C++? I'd guess that they can, though I've not been able to find any evidence of this. I understand Adobe ...

1 2 3 4 5 9