Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 2

An NSComboBox subclass (Cocoa) that allows drag-resizing of the combo box pop-up. NSComboBox generates its pop-up by creating a special NSWindow subclass, NSComboBoxWindow. This pop-up window has an NSScrollView (or subclass thereof) as its content view and uses that to display the choices and ... [More] (if needed) the scrollbar (via an NSComboTableView, which is a subclass of NSTableView). IGResizableComboBox inserts its own NSView subclass as the content view of the NSComboBoxWindow and puts the NSScrollView as a subview of this NSView. This NSView is slightly taller than the NSScrollView and the NSView captures mouse dragging events on this extra space to allow resizing. [Less]

5.0
 
  0 reviews  |  1 user  |  805 lines of code  |  1 current contributor  |  Analyzed 4 days ago
 
 

Holly Gtk Widgets - A free library of .NET/GTK# widgetsFor the use of HollyLibrary.dll you will need:mono >= 1.9 gtk-sharp, gtk-dotnet,gdk-sharp, pango-sharp >= 2.10 mono.cairo >= 2.0 System.Drawing >= 2.0 Download the latest build from here:HollyLibrary.dll Download the ... [More] demo app from here:demo.tar Featured widgets (with screen shots): Widget Short description HFontPicker A office like font picker widget HDateEdit A date-time picker supporting custom formatting options HSimpleList A simple list widget, inspired by the Winforms Listbox control ( has the nice Items collection, the OwnerDrawn property and the OnMeasureItem, OnDrawItem events ). HSimpleComboBox A simple combobox widget, inspired by the Winforms Combobox control HRegExEntry A simple entry with regular expressions validation. Has a small icon that changes if the content is valid or invalid. HColorPicker A simple color picker drop-down ( office like ) HToolTip A nice ballon tooltip window HIpEntry A widget that alows the user to enter an IPv4 address HTreeView A simple to use TreeView widget, similar to the winforms one HComboTree A easy to use combobox with a treeview ( HTreeView ) inside HComboFolder A combobox widget with a folder tree popup HColorPickerWidget - HColorPickerDialog A adobe photoshop like color picker widget / dialog. HLabel A label widget with text position and icon position properties HImageCheckBox A checkbox widget with custom icons and text position properties Some utility classes: CairoUtil GraphUtil GrabUtil WinUtil In the futureCurrent TODO list is here. AttentionFor win32 users: Library is not tested on win32 systems, but theoretically it should work. Screenshot of MonoDevelop toolbox [Less]

0
 
  0 reviews  |  0 users  |  16,674 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

jQuery Editable Combobox (jEC)jQuery Editable Combobox is a jQuery function that allows you to transform any element into editable combobox. Featureseasy-to-use - you need to include the sources and run only one command to enable editable combobox functionality on your site, there is also a ... [More] couple of examples that demonstrates the most commonly used features of the plugin flexible - you can theme it just like you would do with the normal select box, there is a number of preferences that you can change to have combobox suited for your needs, powerful - you can dynamically enable or disable combobox features, use it's values in your scripts and easily modify preferences on runtime, if you find a feature that is not there let us know and we will try to add it soon browser and system independent - plugin will work with all browsers that are supported by jQuery library including Mozilla Firefox, Internet Explorer, Google Chrome, Apple Safari and Opera; plugin will also work on different operating systems including Windows, Unix (Linux) and MacOS X well-written - we've prepared over 300 unit tests to ensure it works well, the code is validated against JSLint to ensure it's best quality up-to-date - we're updating plugin to work with alpha and beta version of jQuery to ensure it's compatibility as soon as new version of the framework is released SupportYou can ask any question regarding jEC on our Support News Group. Posting comments on Wiki has been disabled. For posting issue information please use our Issue Tracker. DocumentsDocumentation Changelog [Less]

0
 
  0 reviews  |  0 users  |  2,696 lines of code  |  0 current contributors  |  Analyzed 9 days ago
 
 

What it is?dxCombobox is a jQuery plugin that allows you to transform any < select > element into an editable combobox. Pressing any alphanumeric key will transform select box into editable state by creating a text box element. An case insensitive search is performed on the corresponding of ... [More] the select box, one the users starts to type in this box. When user goes out of the box (on blur/return), if a direct match is found in the < option > then it is selected else a new option is created with the entered text. - CSS class applied to the selectbox is applied to the dynamic textbox as well. Built upon jQuery 1.2.3 (http://jquery.com) Syntax: $(element).dxCombobox([options]);Parameters: - plugin specific options Options: - int maxlength: maximum length to allow in editable text box, default is 35 characters Current release: 1.2 Found any issues?? Post them here... [Less]

0
 
  0 reviews  |  0 users  |  151 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 

Sexy Combo jQuery plugin Introduction Sexy Combo is a jQuery plugin that replaces drop downs with a more usable and style-able version then the browser default. The plugin offers: Skinned drop downs: A sexy default skin included, but modular code and smart CSS make it easy to style however you ... [More] want. Filtering select via typing: Start typing to narrow down a large list, rather then scrolling thru a huge list. Lots of configuration options to tweak its behavior. Support for multiple options This project has stopped active development at the moment, but a fork of sexy-combo is in active development by one of the authors. See UFD; the Unobtrusive Fast-filter Dropdown, especially this UFD WhyTheFork wiki-page. ExamplesPlease view demo page to see the possibilities of Sexy Combo 2.0.9. Newer version of example pages coming soon. You can also visit SexyCombo in the jQuery plugins directory. InstallationPlease follow these instructions to install Sexy Combo: Download and unpack the archive. Include jQuery and plugin files to your web page: Include core and skin CSS files to your page: // core structure //sexy skin; substitute different skin here if desired Done! Now make your selectboxes look and behave sexy! $("select").sexyCombo(); Usage and configuration options Sexy Combo has a number of configuration options that are passed to the plugin in the form of JavaScript object, e.g. $("select").sexyCombo({triggerSelected: true});. The full list of options is: (string) skin - name of the skin that will be applied to the combobox. Default is "sexy" (string) suffix - this option allows you to configure text input's name. The suffix will be appended to the name of the selectbox. Default is "sexyCombo". (string) hiddenSuffix - the same as previous, but for the hidden input. Default is "sexyComboHidden". (string) initialHiddenValue - the initial value of the hidden input of the combo. Default is "" (empty string). (string) emptyText - if provided, will be shown when an empty text input has no focus. (bool) autoFill - if true, user's input will be autofilled with the value of the first item of the dropdown list. Default is false. (bool) triggerSelected - if true, the selected option of the selectbox will become the initial value of the combo. Default is false. (function) filterFn - a filter function that determines which options should be in the dropdown list. This function takes two parameters - current text input value and dropdown list item's value, and should return true if item should be in the dropdown list, otherwise false. Default is null. (bool) dropUp - if true, the dropdown list will appear above text input. Default is false. (function) initCallback - function that is called at the end of constrictor. Default is null. (function) initEventsCallback - function that is called at the end of initEvents method. Default is null. (function) showListCallback - function that is called when the dropdown list appears. Default is null. (function) hideListCallback - function that is called when the dropdown list disappears. Default is null. (function) changeCallback - function that is called when both text and hidden inputs values are changed. Default is null. (function) textChangeCallback - function that is called when text input's value is changed. Default is null. Note that all callback functions are called in the scope of sexyCombo instance, so you have access to all of its methids / properties. It is possible to create multiple comboboxes from which users can choose more than one option. All you need is to set "multiple" attribute of your selectbox to true, or set multiple config option to true if you create combo without selectbox. Currently this option does not work with autoFill config option. It will be fixed in one of the futute releases. You are also able to create combos without using existing selectboxes. If you want to do this, you should use static method of jQuery.sexyCombo object named create, for example: $.sexyCombo.create({ id : "id", name: "name", container: "#container", data: [ {value: "1", text: "First option", selected: true}, {value: "2", text: "Second option"}, {value: "3", text: "Third option"} ] }); Below is the list of configuration options for static creating of comboboxes. You can pass them to the create method together with options we have discussed above. (string) name - the name of the selectbox that will be created. Optional. Default is "" (empty string). (string) id - the id of the selectbox that will be created. Optional. Default is "" (empty string) (mixed) container - jQuery selector, jQuery object or DOM element that will hold the widget. Optional. Default is $(document). (array) data - data that contains information about combo's options. This is an array of objects, which should have three properties - value(value of the option) and text(text that is displayed for this option) and (optionally) selected (if set to true, option's "selected" attribute will be set to true. Makes sence only with triggerSelected config option set to true). This option is required. (string) url - the URL of JSON object that contains data for combo's options. Object's format is the same as for data option. If specified, data option will be ignored. (object) ajaxData - data that will be passed to AJAX request. (bool) multiple - if true, the combobox will be multiple. Default is false. Appearance customization In this version I have separated core CSS and presentational CSS, so now it's possible to create new skins for Sexy Combo. The download package contains one example skin. Feel free to create your own based on it. Browser compatibility Sexy Combo has been tested and works on the following browsers: Internet Explorer 6 (PC) Internet Explorer 7 (PC) Firefox 1.5 (Linux) Firefox 2 (Linux) Firefox 3 (PC) Opera 9 (PC) The developers welcome bug reports on any browser bug. Patches or code suggestions are also welcome. Support project Every user of Sexy Combo adds some value to it, so you help me by just using it. However, if you want to help more, you can do the following: Tell the world about Sexy Combo. You can write an article or a blog post about it or just tell your friends/colleagues about it. Test it on browsers that are not currently supported "officially". Report a bug. If you can contribute high quality fixes and improvements, join the devlopment here! [Less]

0
 
  0 reviews  |  0 users  |  3,426 lines of code  |  0 current contributors  |  Analyzed 7 days ago
 
 

FWC:SmartSelect is entirely free and published under the MIT license library, allowing to create as possible simply different multifunctional form components such as "Combo Box", "Select List", "Input Autofill" etc. Library provides a lot of features, such as: ... [More] simple templating system based on XHTML/CSS and XSL; very comfortable functions to load list items via AJAX; input autocomplete (Google Suggest analogue); library supports to choose multiple number of list items; list-management and navigation from keyboard; and much many... LIVE DEMOS It is very simple to create and configure your personal form-component. You should only knew HTML and basics of XML or JSON. All of settings are described in a separate XML-file (or JSON-string), which can be loaded in the certain place on any HTML-page by one string of JavaScript or PHP code. The detailed instruction can be found at the official site site in section Documentation. Library works fine on MSIE 5.5+ / Firefox 1.0+ / Opera 8+ / Safari 2.0+. We're still working on Konqueror supporting.Some browsers doesn't support JavaScript includes and AJAX-functions. [Less]

0
 
  0 reviews  |  0 users  |  4,616 lines of code  |  0 current contributors  |  Analyzed about 3 hours ago
 
 

COMBOXComboBox on MooTools Простой ComboBox на MooTools не использующий графику demo

0
 
  0 reviews  |  0 users  |  3,256 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

jQuery FlexBoxOverviewjQuery FlexBox is intended to provide rich combobox functionality to replace the standard html tag. It can also be styled to emulate "suggest" (e.g. Google Search), or type-ahead functionality. It uses jQuery and its ajax capabilities to retrieve json data and ... [More] bind it to the rendered form control. More InformationFairway Technologies [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 1 day ago
 
 

This project consists of two libraries that dynamically build a formatting function for number and date formatting. The date formatting is very similar to PHP's functionality; it also permits parsing dates. The number formatting is similar to MS Excel formatting. The technique of building a ... [More] function to implement each formatting instruction leads to cleaner code that is richer in functionality and much faster than other popular libraries, as proven by benchmarks. There is also a date chooser application (aka calendar form control) that uses the functionality provided by these libraries. And there's a JavaScript combo box and HTML input mask. The code was originally developed and hosted on http://www.xaprb.com/ but is now being hosted here so all can contribute to it. It is now licensed under the MIT license, not the LGPL as it originally was. All are invited to contribute; the original developer is very short on time, so if you want something done, please just do it yourself and don't wait for others. Anyone who requests commit access to the Subversion repository will be granted. Email baron.schwartz at gmail.com to request commit access. Here are links to some blog posts about these functions: http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/ http://www.xaprb.com/blog/2005/09/29/javascript-date-chooser/ http://www.xaprb.com/blog/2005/12/20/javascript-date-parsing/ http://www.xaprb.com/blog/2006/01/05/javascript-number-formatting/ http://www.xaprb.com/blog/2006/05/14/javascript-date-formatting-benchmarks/ http://www.xaprb.com/blog/2006/11/02/how-to-create-input-masks-in-html/ http://www.xaprb.com/blog/2005/09/29/javascript-combo-box/ Demo pages: http://www.xaprb.com/articles/date-formatting-demo.html http://www.xaprb.com/articles/number-formatting-demo.html http://www.xaprb.com/articles/javascript-date-chooser-demo.html http://www.xaprb.com/html-input-mask/html-form-input-mask.html There's a github clone of the code here: http://github.com/mdalessio/flexible-js-formatting/tree/master [Less]

0
 
  0 reviews  |  0 users  |  3,010 lines of code  |  0 current contributors  |  Analyzed 7 days ago
 
 

Compoments suite for Delphi: Binary Tree, Firebird API, HTML functions, String functions, Unicode functions, Ftp Client, GSM functions, Http Client, Internet Messages, Isapi, MySql client, NNTP Client, PHP Runner, SMTP Client, Xml Par

0
 
  0 reviews  |  0 users  |  44,559 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.