active questions tagged widget - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T15:31:35Zhttp://stackoverflow.com/feeds/tag/widgethttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1134667/django-required-field-in-model-form1Django required field in model formRyan2009-07-15T23:37:16Z2009-12-02T15:16:19Z
<p>I have a form where a couple of fields are coming out as required when I don't want them too. Here is the form from models.py</p>
<pre><code>class CircuitForm(ModelForm):
class Meta:
model = Circuit
exclude = ('lastPaged',)
def __init__(self, *args, **kwargs):
super(CircuitForm, self).__init__(*args, **kwargs)
self.fields['begin'].widget = widgets.AdminSplitDateTime()
self.fields['end'].widget = widgets.AdminSplitDateTime()
</code></pre>
<p>In the actual Circuit model, the fields are defined like this:</p>
<pre><code>begin = models.DateTimeField('Start Time', null=True, blank=True)
end = models.DateTimeField('Stop Time', null=True, blank=True)
</code></pre>
<p>My views.py for this is here:</p>
<pre><code>def addCircuitForm(request):
if request.method == 'POST':
form = CircuitForm(request.POST)
if form.is_valid():
form.save()
return HttpResponseRedirect('/sla/all')
form = CircuitForm()
return render_to_response('sla/add.html', {'form': form})
</code></pre>
<p>What can I do so that the two fields aren't required?</p>
http://stackoverflow.com/questions/1831887/display-online-nse-national-stock-exchange-data-in-php-web-application0Display online NSE (National Stock Exchange) data in php web applicationAshok2009-12-02T10:02:34Z2009-12-02T10:12:57Z
<p>I want to display online NSE (National Stock Exchange) data in my php web application. Please help me how to do this. </p>
http://stackoverflow.com/questions/337849/handling-asp-postbacks-from-javascript-widget0Handling ASP postbacks from Javascript Widgethinden2008-12-03T16:48:45Z2009-12-02T06:00:02Z
<p>I am trying to make a small, data-driven widget that is populated with data from a database on the fly. I can load it initially just fine, but when the index of an ASP DropDownMenu is changed, the widget returns a 404.</p>
<p>This could be a symptom of how I am using the Javascript, or how I am using the ASP. I honestly don't know for sure.</p>
<p>Javascript: <a href="http://pastebin.com/f127d6b84" rel="nofollow">http://pastebin.com/f127d6b84</a><br>
ASP: <a href="http://pastebin.com/f38c73708" rel="nofollow">http://pastebin.com/f38c73708</a><br>
VB.NET codebehind: <a href="http://pastebin.com/f7881a903" rel="nofollow">http://pastebin.com/f7881a903</a></p>
http://stackoverflow.com/questions/1830615/how-can-i-use-manytomanyrawidwidget-outside-admin0How can i use ManyToManyRawIdWidget outside admin? princess2009-12-02T04:17:07Z2009-12-02T04:17:07Z
<p>Im new to django and I would like to know how could i use the ManytoManyRawId widget outside admin.</p>
<p>I've tried different ways but still don't work. Help would be really much appreciated.</p>
http://stackoverflow.com/questions/1829713/how-to-include-an-iframe-within-a-vaadin-app0How to include an Iframe within a Vaadin App?PropellerHead2009-12-01T23:36:39Z2009-12-01T23:44:37Z
<p>I would like to include an Iframe within my Vaadin App, how do I proceed implementing this? My initial idea was to wrap the GWT Frame widget, using the approach as <a href="http://vaadin.com/book/-/page/gwt.integration.html" rel="nofollow">described in the Book of Vaadin</a>. Is this at all possible, or is there a better way?</p>
http://stackoverflow.com/questions/1170709/dojo-widget-defaults0Dojo widget defaultsasker2222009-07-23T09:50:54Z2009-11-29T02:52:42Z
<p>Hi All,</p>
<p>i'm currently writing a large scale application heavily based on the dojo toolkit. The whole app is working and standing, but one issue i can not find my way out with, is the creation of custom widgets. It would be useful because it would clean up my source code and also i can reuse this 'widgets' in later projects.</p>
<p>For example: i have a main toolbar, which i would like to call using </p>
<pre><code>myapp.toolbar = new myapp.mainToolbar();
</code></pre>
<p>instead of using </p>
<pre><code>myapp.toolbar = new new dijit.Toolbar({}, containerID);
var button1 = new dijit.form.Button({
label: 'Delete',
id: 'toolbarbutton1',
showLabel: true,
iconClass: "dijitEditorIcon dijitEditorIcon Delete"
});
myapp.toolbar.addChild(button1);
...
</code></pre>
<p>So in short: how do i set up the whole toolbar somewhere else and call it as a simple object? Trying to figure out <code>dojo.declare('myapp.mainToolbar', dijit.Toolbar, {...})</code> but then i get a bunch of errors like 'startup function not existing' etc...</p>
<p>I'd like to do all this programmatically, so without the template html and css files in a custom widget.</p>
<p>A link to a good tutorial or howto would be nice, although google nor yahoo! will reveal any extra's on this matter for me... :)</p>
http://stackoverflow.com/questions/971014/how-do-get-a-nice-scale-widget-in-swt-under-gnome0How do get a "nice" scale-widget in SWT under Gnome?toobb2009-06-09T16:03:35Z2009-11-27T16:00:03Z
<p>Hi,</p>
<p>I would need a scale-widget in SWT that looks like the following example:
<a href="http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/Scales.htm" rel="nofollow">http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/Scales.htm</a></p>
<p>If I run this example under Ubuntu (Gnome) the scale looks like this:
http:// book.javanb.com/swt-the-standard-widget-toolkit/ch10lev1sec2.html</p>
<p>But actually I would prefer to have these steps beside the bar.</p>
<p>What can I do?</p>
<p>Thank you,
Tobias</p>
http://stackoverflow.com/questions/1776676/pyside-qt4-widget-exchange-in-a-hboxlayout0PySide Qt4 widget exchange in a hboxlayoutviraptor2009-11-21T20:30:02Z2009-11-25T07:39:52Z
<p>I'd like to exchange a widget inside a QHBoxLayout. This code seems to work, but as soon as I do the actual <code>app._exec()</code>, the code crashes with <code>terminate called after throwing an instance of 'boost::python::error_already_set'</code>. Is there any way to get the actual error message? (or to resolve this problem)</p>
<pre><code>gaParent = gameArea.parent().layout()
gaParent.removeWidget(gameArea)
gameArea = DrawingScreen()
gameArea.setObjectName("gameArea")
gaParent.insertWidget(0, gameArea)
</code></pre>
http://stackoverflow.com/questions/1790746/how-to-create-a-web-widget-for-my-website-users-to-insert-on-their-blog0How to create a web widget for my website users to insert on their blog ?Nikkel2009-11-24T15:20:08Z2009-11-24T18:21:34Z
<p>Hello,</p>
<p>For my wishlist site, I would like to propose widgets to my users in order to publish their wishlist on their blog or personal website. The idea is to propose a few lines of code to my users that they only need to copy/paste to insert the widget displaying their wishlist. </p>
<p>What is the best way to create/develop a widget ?</p>
<ul>
<li>I have a RSS feed for each wishlist</li>
<li>Since the code need to be dynamic, I
prefer not to use service like
WidgetBox</li>
<li>Flash ? iFrame ?</li>
<li>Possibility to use jQuery</li>
</ul>
<p>Thanks for your input...</p>
http://stackoverflow.com/questions/1789596/show-image-in-gtkmm-from-integer-array0show image in gtkmm from integer arrayNachoV2009-11-24T11:54:20Z2009-11-24T13:53:45Z
<p>I have an integer array with a gray scale image and I need to show it in my application. I'm programing in C++ with gtkmm and I can't find any widget like a canvas that allow you to show and access each pixel in the image.</p>
http://stackoverflow.com/questions/1775630/javascript-drop-down-menu-widget1Javascript drop down menu widget Pekka2009-11-21T14:34:37Z2009-11-21T17:12:26Z
<p>I have a menu consisting of an <ul> in a Web CMS.
I want several menu items to have sub-items that are displayed in a dropdown list. These sub-items are <ul>s as well.</p>
<p>This is basically easy to do with a few lines of CSS and Javascript, but I am looking for a ready-made Javascript solution that helps me handle the following:</p>
<ul>
<li>Deal with screen edge situations: If any part the dropdown menu would be outside the current viewport, place it so that it is completely within the viewport.</li>
</ul>
<p>This is a bitch to code from scratch.</p>
<p>"Nice to have"s would be:</p>
<ul>
<li><p>Centered positioning below the drop-down button </p></li>
<li><p>Adding a onclick event to the body so that clicking outside the drop down menu will close it; clean removal of the onclick event afterwards </p></li>
</ul>
<p>But those I can do myself if necessary.</p>
<p>A nice, small, unobtrusive widget that magically converts my <ul> would be lovely.</p>
<p>If the solution is based on a framework, it has to be Prototype as that's what I'm using in the CMS.</p>
http://stackoverflow.com/questions/1764743/share-embed-widget-design-samples0Share & Embed Widget design samples?Prashant2009-11-19T16:45:53Z2009-11-19T16:55:51Z
<p>I am searching for some sample interface or design for creating a "Share & Embed Widget or Link" interface in my website. </p>
<p>I found scribd.com's interface interesting <a href="http://www.scribd.com/doc/22735617/Senate-Health-Care-Bill" rel="nofollow">http://www.scribd.com/doc/22735617/Senate-Health-Care-Bill</a> here click on "Share & Embed" link given in top-right of the doc.</p>
<p>Could any one please provide me some sample links of website who provides this kind of interfaces, or any blog post related to this topic, so that I can take inspiration from those interfaces to design my "Sharing widget" interface.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1746348/turning-off-animation-in-dojox-widget-dialog1Turning off animation in dojox.widget.Dialogbenr2009-11-17T03:12:48Z2009-11-19T06:46:33Z
<p>Anyone know how to turn animation off in dojox.widget.Dialog? I love the modal dialog, but want it to pop up immediately, rather than the painfully slow animate on that it does. I tried turning off the apparent animation controls, but it still animates. Also looked into the src code, but didn't see any smoking guns for a configuration option. here's the sample invocation:</p>
<pre><code>id = "dojoModalWrapper"
jsId = "dojoModalWrapper"
dojoType = "dojox.widget.Dialog"
showTitle = "false"
dimensions = "[678,370]"
sizeDuration = 0
easing = null
style = "background-color: #e86d0d; display:none;"
</code></pre>
http://stackoverflow.com/questions/364308/what-is-a-good-resources-to-add-content-snippets-widgets-to-many-sites-like-igo0What is a good resources to add content snippets (widgets) to many sites like iGoogle, Facebook and MySpace, etcBrennan2008-12-12T22:02:54Z2009-11-17T07:00:03Z
<p>I have found services like ClearSpring and Widgetbox for putting content snippets onto a widget range of social networking web sites, but I would like to build my own widgets without a third party dependency. I have been looking but I have not yet found a good resource to learn how to create widgets/gadgets for multiple sites. It was easy to build a gadget for iGoogle, but Facebook, MySpace and the others are less obvious.</p>
<p>What is a good resource to create content snippets for multiple sites?</p>
http://stackoverflow.com/questions/1380951/create-a-mac-dashboard-widget-compatible-with-32-bit-and-64-bit-systems0Create a mac dashboard widget compatible with 32-bit and 64-bit systemsHomer1980ar2009-09-04T18:53:48Z2009-11-11T20:59:02Z
<p>I have to develop a dashboard widget for Mac Osx to support 32/64 bit systems.
This looks to me that there is nothing else to do if the widget does not use any programmed plugin, just HTML, JS & CSS.</p>
<p>Is this correct? Just need to be sure.</p>
<p>Thanks a lot,
Leonardo</p>
http://stackoverflow.com/questions/624516/is-there-a-jquery-tab-control-which-handles-multiple-lines-of-tabs-well2Is there a Jquery tab control which handles multiple lines of tabs well?Bittercoder2009-03-08T23:10:59Z2009-11-11T19:03:32Z
<p>I have an web application with a dynamic number of tabs ranging between 2 to 20.</p>
<p>I'm currently using Jquery UI's tab plugin, but finding that it's behaviour is less then Ideal (i.e. around 12 tabs, when it wraps, the second line of tabs move with the tab selection and sometimes jump across 3 lines instead of two.</p>
<p>This is a two-fold question, first off does anyone have any idea how I could stop the second row of tabs jumping around when the selection changes.</p>
<p>Alternatively does anyone know of a tab plugin for jQuery that handles multiple lines of tabs well (if I can't find a resolution I might end up using ExtJS or something similar, but was trying to keep this application fairly light-weight).</p>
<p><strong>Answer</strong></p>
<p>After further investigation it turns out this was being caused by the Jquery UI theme I was using, this was the problematic style:</p>
<pre><code>.ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: .1em; border-bottom: 0; }
</code></pre>
<p>I just removed the padding-bottom: .1em and it resolve the issue (the clue was that the second row of elements were moving along with the selection changing).</p>
http://stackoverflow.com/questions/1704619/when-using-building-my-yahoo-widget-getelementsbytagname-returning-elements-not-n0When using building my yahoo widget getElementsByTagName returning elements not nodesDave2009-11-09T23:15:57Z2009-11-10T21:27:23Z
<p>I can see that itemNodes is a DOM nodelist containing the same number of entrys as number of titles. I want to access the information inside the title node. I have tried using itemNodes.childNodes[0].nodeValue</p>
<p>I receive the error</p>
<p>An error occurred: TypeError: itemNodes.childNodes has no properties</p>
<p>placing itemNodes.item(i) inside the loop returns</p>
<p>Title 1: [object DOMElement]
Title 2: [object DOMElement]
Title 3: [object DOMElement]
Title 4: [object DOMElement]</p>
<p>I expected DOM nodes. what have I done wrong? I'm using Yahoo widgets 4.5 on a vista machine?
I have the following in my .KON file. </p>
<pre><code>x = filesystem.readFile('sample.xml');
doc = XMLDOM.parse(x);
if(doc != null)
{
//print( doc.toXML() );
var itemNodes = doc.getElementsByTagName('title');
var firstItem = itemNodes.item(0);
print(itemNodes);
numberOfItems = itemNodes.length;
items=null;
items = new Array(numberOfItems);
for(var i = 0; i < numberOfItems; i++)
{
print("Title " + (i+1) + ": " + itemNodes );
}
}
else
{
print("An error occurred. Response status: (" + request.status + ") " + request.statusText);
}
}
catch(e)
{
print("An error occurred: " + e);
}
</code></pre>
<p>The sample.xml is as follows</p>
<pre><code><!-- Edited by XMLSpy® -->
<bookstore>
<book category="cooking">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="children">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="web">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
</book>
<book category="web" cover="paperback">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
</code></pre>
http://stackoverflow.com/questions/1702443/turning-safari-web-clips-into-html0Turning Safari Web Clips into HTMLunknown (google)2009-11-09T17:18:34Z2009-11-10T18:51:20Z
<p>Safari's "Web Clip" feature is nice because you can take a section of a web page and access it dynamically from the desktop. This is especially cool when you are using it to "save" streaming videos and the like. What I want to do is embed one of these into an HTML page. However, unlike real widgets that are coded/WYSIWYGed, Safari doesn't really store any source code for the Web Clips; instead it does something to the effect of hard coding it every time the Dashboard starts up.</p>
<p>Is there any way to turn a Web Clip into HTML? Through Dashcode or otherwise?</p>
http://stackoverflow.com/questions/1704757/google-desktop-gadgets-vs-yahoo-widgets0Google Desktop Gadgets vs. Yahoo WidgetsBamerza2009-11-09T23:55:42Z2009-11-10T00:08:32Z
<p>I am trying to figure out which widget development platform is superior. I want a cross-browser widget and so I a thought either the Google or Yahoo solution will be best. They both seem to be using the same technologies - JavaScript, HTML, XML, etc. </p>
<p>Any thoughts on which is a better platfrom in terms of development, performance and any other unmentioned factors? </p>
http://stackoverflow.com/questions/1702889/show-spinner-before-adding-widget-android0show spinner before adding widget androidMrThys2009-11-09T18:36:23Z2009-11-09T19:35:26Z
<p>For a widget I am creating for the Android OS, I want the user to first select a certain option from a Spinner. Just like when you add a shortcut to the homescreen.</p>
<p>Is that possible or do you have to start an Activity?
If it is possible, can anyone explain how to do it?</p>
http://stackoverflow.com/questions/1471492/how-do-i-change-yui-autocomplete-textfield-value-population-options0How do I change YUI Autocomplete textfield Value population Options?randy melder2009-09-24T12:50:14Z2009-11-09T11:12:04Z
<p>Data:</p>
<pre><code>JACKSON, MS 39212|39212
BAINVILLE, MT 59212|59212
CROOKSTON, NE 69212|69212
COLUMBIA, SC 29212|29212
SPOKANE, WA 99212|99212
</code></pre>
<p>Code:</p>
<pre><code> <form method="GET" target="_blank">
<fieldset><legend>remote example</legend>
<label for="myRemoteInput">Enter a state:</label>
<div id="myRemoteAutoComplete">
<input id="myRemoteInput" name="myRemoteInput" type="text">
<div id="myRemoteContainer"></div>
</div>
</fieldset>
<input type="submit" />
</form>
<script type="text/javascript">
YAHOO.example.BasicRemote = function() {
var oRDS = new YAHOO.util.XHRDataSource("data.php");
oRDS.responseType = YAHOO.util.XHRDataSource.TYPE_TEXT;
oRDS.responseSchema = {
recordDelim: "\n",
fieldDelim: "|"
};
oRDS.maxCacheEntries = 5;
var oRAC = new YAHOO.widget.AutoComplete("myRemoteInput"
, "myRemoteContainer"
, oRDS
, {minQueryLength: 2,maxResultsDisplayed: 25, forceSelection: true});
return {
oRDS: oRDS,
oRAC: oRAC
};
}();
</script>
</code></pre>
<p>Scenario:
I want to display the autocomplete widget with the City, ST zip values, however, the form field myRemoteInput always populates with the selected City, ST zip value.</p>
<p>Question:
How do I populate the form field myRemoteInput value with the zipcode when a user selects the City, ST zip value from the autocomplete drop down?</p>
http://stackoverflow.com/questions/1686196/styling-a-qscrollbar-by-qstyle2Styling a QScrollBar by QStyleBuuuh2009-11-06T08:28:34Z2009-11-06T09:24:54Z
<p>I try to style a QScrollBar via a custom QStyle but if i draw nothing in drawComplexControl for the QScrollBar, the required space for the scrollbar on the parent widget is painted black. If i do the same with, eg a QToolButton simply the toolbutton is not painted but there is no black rect on the widget. That is what i would expect.
But what's the difference to the QScrollBar?</p>
http://stackoverflow.com/questions/1682854/qt-table-widget-numbers-only0QT: table widget, numbers onlyGiuseppe2009-11-05T19:07:27Z2009-11-05T19:43:42Z
<p>Dear All,</p>
<p>first I apologize for the probably silly question. I am having <strong>trouble with QT</strong>.
I have a table widget with four columns; <strong>I want the user to be able to insert only
integers in the first three and a double in the fourth</strong>.</p>
<p>I believe that this can be done with delegate, but I have not found relevant
examples (only some with QDateTimeEdit).</p>
<p>What should I do? Can I find some tutorial anywhere? Thanks!!!</p>
<p>Cheers</p>
<p>Giuseppe</p>
http://stackoverflow.com/questions/1678958/gwt-add-custom-widget-to-panel0gwt add custom widget to panelCKeven2009-11-05T07:42:06Z2009-11-05T08:05:04Z
<p>I have created some classes in which it create a bunch of widgets (e.g. label, textbox). I want to create the widget on the fly and add it to a panel. How can I do that.</p>
http://stackoverflow.com/questions/1446702/large-data-accociation-javascript-widget0Large data accociation javascript widgetKevin2009-09-18T20:33:37Z2009-11-02T17:13:59Z
<p>I am looking for a searchable multiple select javascript widget that can handle filtering large amounts of server-side data for a 1-n relationship. For instance I have a category and I want to be able to filter through an unassociated list of products and attach them to the category in a user friendly way. I don't want the unassociated list loaded with the widget - it is too large. It needs to have a remote search.</p>
<p>I found this: <a href="http://yanickrochon.uuuq.com/multiselect/" rel="nofollow">multiselect</a> but I had problems with large sets of data.</p>
<p>Anyone have any ideas where I can find something?</p>
http://stackoverflow.com/questions/1523851/gwt-printing-to-pdf2GWT printing to PDFunknown (google)2009-10-06T06:11:21Z2009-10-27T06:48:54Z
<p>Hi guys,</p>
<p>I wanna to a pop over content to PDF. I am using GWT. I think client side its impossible. But any budy here know how browser can print into PDF file? And is there any way to print a HTML content into PDF on server side? I have a HTML content with CSS on adding this content to PDF the view should remain same as it appear in HTML. </p>
<p>Is there any HTML to PDF file converter available for java? I tried pd4ml its not prodicing good PDF.</p>
http://stackoverflow.com/questions/1607515/pyqt-custom-widget-in-c0PyQt custom widget in c++luacassus2009-10-22T14:12:19Z2009-10-22T14:15:47Z
<p>Can I write custom Qt widget in pure C++, compile it and use in PyQt?</p>
<p>I'm trying to use the ctypes-opencv with qt and I have performance problems with python's code for displaying opencv's image in Qt form.</p>
http://stackoverflow.com/questions/1522474/creating-pretty-qt-custom-widgets2Creating "pretty" Qt Custom Widgetsswanson2009-10-05T21:23:54Z2009-10-21T03:21:11Z
<p>What is the process behind making custom widgets (using Qt) that don't look...well...ugly?</p>
<p>I know it is fairly trivial to make a "custom widget" that has say, a listbox and a pushbutton slapped together into one, but how would I go about making something that looks more like this:</p>
<p><a href="http://www.qt-apps.org/content/show.php/AnalogWidgets?content=87780" rel="nofollow">QAnalogWidgets</a></p>
<p>I have made some rough mock-ups that basically use a PNG background (that I made in Photoshop) with basic elements like QLabels placed on top of them, but I don't think this is how I should be doing it. I know that Qt supports CSS -- is this what people use to create widgets that actually look good? Do I need to be working in the paintEvent methods? OpenGL?</p>
<p>Trying to search for anything "custom widget qt" related is just giving me tons of info about how to import them into the Designer, etc -- so any leads would be appreciated.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1500385/need-a-sortable-javascript-table-which-can-handle-real-time-updates0Need a sortable JavaScript table which can handle real-time updatesrajax2009-09-30T20:11:14Z2009-10-20T02:33:26Z
<p>I need a sortable table or grid widget in JavaScript which can handle real-time updates. I will be updating rows within the table via updates from Comet and preferably don't want a widget that requires me to redraw the whole table on each update or hogs the CPU when updating.</p>
http://stackoverflow.com/questions/1366585/hmvc-framework-for-coldfusion1HMVC framework for Coldfusion?Alex2009-09-02T09:06:18Z2009-10-17T00:19:26Z
<p>I'm given a task to develop a couple of applications in ColdFusion that will share some of the data - same data but different presentation.</p>
<p>The first solution that comes in mind is to create a ColdFusion widget that as I understand breaks some MVC rules within ColdBox I am currently using. I need more of a view within another view with its own controller and model (all in CFML, no Ajax). My understanding is that MVC does not support such hierarchy whilst its inherent in HMVC.</p>
<p>Any suggestion on the graceful workaround and/or alternative HMVC framework?</p>