Browsing projects by Tag(s)

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

Showing page 1 of 4

HTML::FormFu is a HTML form framework which aims to be as easy as possible to use for basic web forms, but with the power and flexibility to do anything else you might want to do (as long as it involves forms).

5.0
 
  0 reviews  |  5 users  |  4,620 lines of code  |  0 current contributors  |  Analyzed 10 days ago
 
 

Client side validation of form submission is very crucial and important. This is an attempt to create a dynamic library which will do the basic validation with some amount of configuration provided to the user using it as per the requirement. The main goal behind building the validator is to avoid ... [More] playing with html form and let javascript do the validation and css highlight it. So that it can be applicable to the already created form without touching it but by just configuring it through javascript and css. [Less]

0
 
  0 reviews  |  1 user  |  455 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

This java library allows to create swing forms by writing code in a simple manner: Form form = FormBuilder.map( Person.class ).buildForm();

5.0
 
  0 reviews  |  1 user  |  4,413 lines of code  |  0 current contributors  |  Analyzed 11 days ago
 
 

DescriptionA PHP framework for rapidly creating classes that mirror MySQL tables. The Simpl framework comes with the basic functions to list, display and edit records from the database. With this framework a simple manager and front of a site can be created within a few minutes. An example database ... [More] , manager and front end are included with the framework. FeaturesNo Installation/PEAR/Root Access required Database table abstraction Automatically configured database functions (ie. GetInfo, GetList, Save, Delete, Search and Form) Advanced automatic form creation to mirror database/class expectations, XHTML compliant and ADA accessible. Table structure caching, Query level caching, and saving of inserts or updates to the filesystem if the database is unavailable. Ability to query cross databases on the same server Form validation Upload, Move, Copy, Delete and List Files Resize and Rotate Images Email with class abstraction with support for attachments RSS0.91, RSS1.0, RSS2.0, ATOM Feeds CVS, JSON, XML and SQL Exports JSON encoding and decoding support GoalsEasy Install. No need to be an administrator. Minimal Server Load. Created for a high traffic shared server environment. Straightforward API. No need to dig through documentation, functions are naturally named. Stop Wasting Time. Time is precious, no need to reinvent the wheel. OtherStuffCheckout the PoweredBySimpl wiki page to view and add your site using the PHPSimpl framework. The VersionHistory has been updated to reflect the past implementations of PHPSimpl The Roadmap shows where we are going with the project on our way to Release 1.0 [Less]

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

O que é ?FormUp é uma classe em ActionScript 2.0 para tratamento de formulários em Flash sem o uso de componentes. Por que?Criada para facilitar o desenvolvimento de formulários, visto que isso é muito trabalhoso em alguns casos. FormUp permite que você apenas crie a interface do ... [More] formulário, e se preocupe com as animações e interações. Bastando especificar os tipos de campos utilizados, e ela faz a validação, cria máscaras e outras coisas. O principal objetivo é nos livrar da mão de obra de tratar os formulários com máscara, validação, tabIndex e todo o tramite de enviar, pegar respostas e todas essas coisas. Ela trata formulários de qualquer tipo, os tornam seguros, nos deixando livre para cuidar de animações cores e efeitos. Como?A class é apenas uma abstração do uso do objeto sendAndLoad para funcionar de maneira genérica, desde um simples formulário de contato até um grande form de cadastro com todos os tipos de dados comuns (file, passwd, radio, check, text...). Usando os eventos é possível definir qualquer ação pro form de acordo com a interação do usuário. E também é possível usar o AMFPHP, a class FormAmfUp dá o suporte para usarmos o amfphp, seguindo as regras de sua documentação. Também podemos usar qualquer outra linguagem de web server-side (PHP, ASP, JSP) etc. ExemploImportando e iniciando o objeto import FlashForm.FormUp; var meuForm:FormUp = new FormUp();Definindo campos e outros parametros meuForm._arrayField[0] = {mc:'nome', required:true}; meuForm._arrayField[1] = {mc:'email', fType:'email', required:true}; meuForm._form = this; meuForm._serverFile = 'cadastro.php';Ao iniciar meuForm.onStart = function() { trace('Iniciado!'); };Após a validação, e antes do envio para o servidor meuForm.onSend = function() { trace('Enviando...'); this._afterSend.ready = true; };Em caso de erro de preenchimento meuForm.onError = function(arr) { trace(arr[0].mc); trace(arr[0].msg); };Ao completar o envio meuForm.onComplete = function() { trace('Concluído!'); };Iniciando o formulário meuForm.init();Baixe exemplos com código. [Less]

0
 
  0 reviews  |  0 users  |  639 lines of code  |  0 current contributors  |  Analyzed 9 days ago
 
 

Form validation systemCreated by Sergey Shuchkin mailto:sshuchkin@googlemail.com Main features: Language: english, russian Supported validations: required (req) integer (isInt) float (isFloat) string length (minlen, maxlen) min, max email (isEmail) url (isUrl) date (isDate), password (isPass) ... [More] , phones: usa, international (isUSAPhone, isIntPhone), zip (isZip) credit card (type, number, expiration date, Visa,MasterCard,DiscoverCard, American Express,DinersClub,JCBCard, enRouteCard) custom regular expression (isRegex) AJAX validation (isAjax) Client JavaScript validationUsed html "class" attribute to define validation Used html "title" attribute to define field name Server part (php), class ValidatorValidator::init() Validator::check() (or directly Validator::error(), Validator::success()) [Less]

0
 
  0 reviews  |  0 users  |  1,762 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 

Currently, the project consists of a partially refactored javascript framework with a growing suite of jsUnit tests. The script relies heavily on (and is being re-written to resemble) the Prototype framework.

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

moofloor provides various classes to use with mootools. FormCheck - Clientside Form Validation ClassMain featuresLightweight, shiny and fast Skins support : customize css, fonts, ... Cross-browser compatibibility Live Validation Display errors as tips, or before/after the field Basic validation ... [More] (required, alpha, digit, alphanu, length, confirm, ...) Regex validation (phone, email, url) Custom function based validation, to perform test that could not be handled by basic tests neither regex test. Make easily your own custom regex and alerts Internalization : we now support 10 different languages Active community A lot of options that allow you to customize this class to fit exactly your needs Join Discussion Group http://groups.google.com/group/moofloor Documentation and additional information can be found at : http://mootools.floor.ch/docs Download: http://mootools.floor.ch/en/download/ [Less]

0
 
  0 reviews  |  0 users  |  12,213 lines of code  |  0 current contributors  |  Analyzed 8 days ago
 
 

This is a jQuery Plugin for form validation. Main Features: 1) Multilingual support 2) Fairly straight forward to modify and add your own validation rules. (e-mail, url and date validation based on easy to modify RegExps) 3) Templates! You can specify the formatting of the output when an ... [More] error occurs. Can be html (for inline display of errors), javascript (for alert() or console messages) or what ever. 4) There is no need to change your current HTML markup. Plugin contains function to automatically set validation rules for the elements you want. 5) Works perfectly with other plugins, esp. ThickBox (i.e. display response in thickbox if form is valid) and jQuery Form Plugin (for ajax submit) EXAMPLE 1: Validate Single Element on Blur (e.g e-mail address) $("#email").blur(function(){ $.checkValidity({ element: this, template : error_template.inConsole, callback: function(errors){(errors) ? console.debug(errors) : console.debug("Field is valid")} }); }); EXAMPLE 2: Validate Form on Submit (e.g. at least one product needs to be selected) $("#purchase").submit(function(){ var err = $.checkValidity({ element: this, template : error_template.inConsole, callback: function(el_errors){if(el_errors){alert(el_errors);}} }); return err; }); More examples in source code. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

yui-form-validator is a javascript html form validator based on Yahoo User Interface (YUI) form validation could be achieved by configuration, no need to write validation javascript for every input element! @Author stauren@stauren.net It's a YUI extention. Check out this example: ... [More] http://stauren.net/uploads/yui-form-validator/example/index.html It enables configurable dynamic HTML form validation. Highlights: Runtime configurable validation by length, value, regular expression and ajax. Auto validation on blus, on value change, and APIs to fire validation. Use predefined validation rules simply by adding a class name. Validation on input, select, textarea. Elements in a validatoin group share the same notification. May release server side validation scripts(in PHP) using the same validation configration(Unified validation). 这个项目的内容是使用javascript对Html表单进行基于配置的自动验证,无需为每次验证写额外的函数方法。 自信这个验证的lib还是写得很不错的,基于yui,是一个yui extension的形式。语法、注释、风格、效率都尽我所能做到了最好,相信如果给一个开发者看我的validator和yui的本身库文件,他/她是会觉得代码风格比较一致的,我一向相信规范代码风格注释习惯排版的美观是作为一个decent的程序员的基本要求。 目前功能不太多,不过已经比较强大了,项目中的验证都用这个实现了,有很多比较难比较偏的使用例子都解决了。我也知道做一个万能的表单验证是不可能的,不过,我会努力更新的。 [Less]

0
 
  0 reviews  |  0 users  |  990 lines of code  |  0 current contributors  |  Analyzed 5 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.