All Projects → jasonkneen → nl.fokkezb.form

jasonkneen / nl.fokkezb.form

Licence: other
[UNMAINTAINED] Alloy TableView Form Widget

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to nl.fokkezb.form

nl.fokkezb.button
Bootstrap Button widget for Appcelerator (Titanium)
Stars: ✭ 72 (+67.44%)
Mutual labels:  widget, alloy
here-map-widget-for-jupyter
Use HERE Maps API for JavaScript in your Jupyter Notebook.
Stars: ✭ 29 (-32.56%)
Mutual labels:  widget
homeassistant-coronavirus-hessen
[Unmaintained] Home Assistant component to scrape the current SARS-CoV-2 data for the German state of Hessen from the website of the Hessisches Ministerium für Soziales und Integration.
Stars: ✭ 15 (-65.12%)
Mutual labels:  unmaintained
flutter code input
Flutter Code Input
Stars: ✭ 69 (+60.47%)
Mutual labels:  widget
wsoh
INACTIVE - http://mzl.la/ghe-archive - World Series of Hack
Stars: ✭ 44 (+2.33%)
Mutual labels:  unmaintained
firefox-for-android-addons
INACTIVE - http://mzl.la/ghe-archive - [deprecated] A collection of JS modules, sample code, and boilerplate add-ons to help you build add-ons for Firefox for Android.
Stars: ✭ 46 (+6.98%)
Mutual labels:  unmaintained
wol
Ruby Wake-On-LAN
Stars: ✭ 18 (-58.14%)
Mutual labels:  unmaintained
kde-plasmoid-betterinlineclock
Your usual clock widget, just way better and on a single line!
Stars: ✭ 18 (-58.14%)
Mutual labels:  widget
white-cursor
Provides a white I-bar cursor in the Atom editor for use with dark backgrounds
Stars: ✭ 13 (-69.77%)
Mutual labels:  unmaintained
flutter easyloading
✨A clean and lightweight loading/toast widget for Flutter, easy to use without context, support iOS、Android and Web
Stars: ✭ 1,021 (+2274.42%)
Mutual labels:  widget
TagsView
Simple and highly customizable Xamarin.iOS tag list view. Originally inspired by https://github.com/ElaWorkshop/TagListView
Stars: ✭ 20 (-53.49%)
Mutual labels:  widget
telekom-data-usage-widget
Telekom Datennutzung Widget für iOS 14
Stars: ✭ 61 (+41.86%)
Mutual labels:  widget
browsercompat
API for browser compatibility data on developer.mozilla.org
Stars: ✭ 21 (-51.16%)
Mutual labels:  unmaintained
covid-ampel-widget
🚦 Ampel Widget, um die aktuellen 🦠Corona-Zahlen (Inzidenz) des RKI für die Landkreise in 🇩🇪 Deutschland auf dem Smartphone anzuzeigen
Stars: ✭ 15 (-65.12%)
Mutual labels:  widget
AndroidUiKit
uikit widget common baseview Adapter faster develop
Stars: ✭ 48 (+11.63%)
Mutual labels:  widget
js-year-calendar
A fully customizable year calendar widget
Stars: ✭ 164 (+281.4%)
Mutual labels:  widget
angular-progress-button
[Unmaintained] Buttons with built-in progress bars for AngularJS
Stars: ✭ 27 (-37.21%)
Mutual labels:  unmaintained
vercel-toast
💬 Framework-agnostic vercel design's toast component (≈1KB Gzipped)
Stars: ✭ 67 (+55.81%)
Mutual labels:  widget
openbadges-specification
INACTIVE - http://mzl.la/ghe-archive - Specs related to Open Badges
Stars: ✭ 23 (-46.51%)
Mutual labels:  unmaintained
text-style-editor
Text style editor widget for flutter
Stars: ✭ 25 (-41.86%)
Mutual labels:  widget

UNMAINTAINED: I'm no longer actively maintaining this project. If you'd like to take it over, create an issue requesting so. If you've found an issue, send me a PR and I may still be able to review and merge.

Alloy Form Widget Appcelerator Alloy

An Alloy Widget to create a form using a TableView, much like the familiar settings views on iOS.

Get it gitTio

Install via gitTio:

$ gittio install nl.fokkezb.form

Or download a release, extract it to your app's app/widgets/nl.fokkezb.form folder and add the dependency to your config.json:

{
	..
	"dependencies": {
	    "nl.fokkezb.form": "*"
	    ..
	  }
}	

Use it

Consult the documentation for all options, e.g. to create:

index.js

var form = Alloy.createWidget('nl.fokkezb.form', {
  fieldsets: [{
    legend: 'My form',
    fields: [{
      name: 'name',
      label: 'Your name',
      type: 'text'
    }, {
      name: 'email',
      label: 'Your email address',
      type: 'text',
      format: 'email'
    }, {
      name: 'like',
      label: 'Do you like it?',
      type: 'switch'
    }]
  }]
});
$.index.add(form.getView());
$.index.open();

Screenshot

Screenshot

License

The MIT License (MIT)

Copyright (c) 2014 Fokke Zandbergen

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].