Hooray, the form validated! This is what it returned:
' .''.print_r($valueSet, true).'' .($valueSet->imgsave ? '
image-submit click-coordinates:
'.print_r($testForm->getElementByName('imgsave')->getCoords(), true).'' : '') .'
addCssClasses('testform')
->showMessages('Errors:')
//->showCustomMessages('Errors:')
->setLanguage('english')
->useExternalFormDeclaration()
->setPackagePath('/////htmlform///')
->setMultipartFormData()
->useReducedErrorMarking()
;
//--|FIRST-FIELDSET----------
/**
* Create a fieldset.
* - apply a legend to it
*/
$testFieldSet = FieldSet::get()->setLegend('simple widgets');
/**
* Create a custom-html-content-element and add it to the fieldset (simple, wrapped, all-purpose html)
*/
$testFieldSet->addElement(
CustomHtml::get()
->setHtml('')
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set a default text
* - add random bordered css-class
* - set width/size
* - set the max input chars
* - set a validator (has to be an eMail-address, has to fulfill random expression)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('testinputtext')
->setLabel('standard text input (must be valid eMail-address):')
->setText('me@you.com')
->setCssClasses('bordered')
->setSize(25)
->setMaxLength(10)
->setValidator(
FormValidator::get()
->setEmail()
->setCustomCase(true)
->activateJavascriptValidation('input:text[name=testinputtext]')
)
->refill(null, true)
);
/**
* Create a standard single select and add it to the fieldset.
* - add a label
* - add options to choose from (optgroup => [value => text])
* - select an entry by single value as default
* - disable an entry by single index
* - set a validator (must be a simple digit-number, has custom error message)
* - set "none" as a value to be considered empty, so that chosing the default validates
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
Select::get('testselectsingle')
->setLabel('single select (must select number or nothing):')
->setOptions(
array(
'default' => array(
'none' => '---'
),
'strings' => array(
'a' => 'test1',
'b' => 'test2'
),
'numbers' => array(
'2' => '333'
),
'c' => '444.4'
)
)
->setSelected('2')
->setDisabled(2)
->setValidator(
FormValidator::get()
->setDigits()
->setOptional(array('none'))
->setErrorMessage('Please choose an "only digit"-value or none.')
->activateJavascriptValidation()
)
->refill(array())
);
/**
* Create a standard single select list and add it to the fieldset.
* - add a label
* - add options to choose from (optgroup => [value => text])
* - select an entry by single value as default
* - disable an entry by single index
* - set a validator (must be a simple digit-number, has custom error message)
* - set "none" as a value to be considered empty, so that chosing the default validates
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
SelectList::get('testselectlistsingle')
->setLabel('single select list (must select number or nothing):')
->setOptions(
array(
'default' => array(
'none' => '---'
),
'strings' => array(
'a' => 'test1',
'b' => 'test2'
),
'numbers' => array(
'2' => '333'
),
'c' => '444.4'
)
)
->setSelected('2')
->setDisabled(2)
->setValidator(
FormValidator::get()
->setDigits()
->setOptional(array('none'))
->setErrorMessage('Please choose an "only digit"-value or none.')
->activateJavascriptValidation()
)
->refill(array())
);
/**
* Create a single select with a "none"-default and add it to the fieldset.
* - add a label
* - set options (value => text)
* - set validator (must have a selection)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
Select::get('testselectsinglemixed')
->setLabel('single select (must have a selection):')
->setOptions(array('' => '---', 'b' => 'hey', 'c' => 'you'))
->setValidator(
FormValidator::get()
->setRequired()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a multiple select and add it to the fieldset.
* - add label
* - set as multiple select
* - set options (value => text)
* - set css classes for options (they cycle if less then number of options)
* - set titles for options (not quite standard, but practical, they also cycle)
* - set several options selected as default by mixed values
* - disable options by mixed array
* - set select height
* - set validator (must have selection, values of options must be "a" or "c", set all standard messages as custom here)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
Select::get('testselectmultiple')
->setLabel('multi select (must have selection, values must be "a" or "c"):')
->setMultiple()
->setOptions(array(
'a' => 'test1',
'1' => 'test2',
'c' => 'test3',
'3' => 'testdisabled',
'42' => 'testdisabled2'
))
->setOptionCssClasses(array('odd', 'even'))
->setOptionTitles(array('eins', 'zwei'))
->setSelected(array(1, 'c'))
->setDisabled(array('3', 5))
->setSize(5)
->setValidator(
FormValidator::get()
->setRequired()
->setCharacterClass('ac')
->setAutoErrorMessagesAsCustom()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a multiple select list and add it to the fieldset.
* - add label
* - set as multiple select
* - set options (value => text)
* - set css classes for options (they cycle if less then number of options)
* - set titles for options (not quite standard, but practical, they also cycle)
* - set several options selected as default by mixed values
* - disable options by mixed array
* - set select height
* - set validator (must have selection, values of options must be "a" or "c", set all standard messages as custom here)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
SelectList::get('testselectlistmultiple')
->setLabel('multi select list (must have selection, values must be "a" or "c"):')
->addCssClasses('windowed')
->setMultiple()
->setOptions(array(
'a' => 'test1',
'1' => 'test2',
'c' => 'test3',
'3' => 'testdisabled',
'42' => 'testdisabled2'
))
->setOptionCssClasses(array('odd', 'even'))
->setOptionTitles(array('eins', 'zwei'))
->setSelected(array(1, 'c'))
->setDisabled(array('3', 5))
->setSize(5)
->setValidator(
FormValidator::get()
->setRequired()
->setCharacterClass('ac')
->setAutoErrorMessagesAsCustom()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set valid standard date as default value
* - set validator (must be standard date if filled, but is optional)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('datetest')
->setLabel('standard text input (must be a standard date, is optional):')
->setText('1/13/2002')
->setValidator(
FormValidator::get()
->setDate()
->setOptional()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set valid standard time as default value
* - set validator (must be standard time)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('timetest')
->setLabel('standard text input (must be a standard time):')
->setText('1:30am')
->setValidator(
FormValidator::get()
->setTime()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set valid standard datetime as default value
* - set validator (must be standard datetime)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('datetimetest')
->setLabel('standard text input (must be a standard datetime):')
->setText('12/1/2012 12:30:59 pm')
->setValidator(
FormValidator::get()
->setDateTime()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set a valid iso-date as default text
* - set validator (must be iso-date)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('dateisotest')
->setLabel('standard text input (must be an iso-date):')
->setText('2002-12-1')
->setValidator(
FormValidator::get()
->setDateISO()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set valid iso-time as default value
* - set validator (must be iso-time)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('timeisotest')
->setLabel('standard text input (must be an iso-time):')
->setText('23:59:59')
->setValidator(
FormValidator::get()
->setTimeISO()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set valid iso-datetime as default value
* - set validator (must be iso-datetime)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('datetimeisotest')
->setLabel('standard text input (must be an iso-datetime):')
->setText('2012-12-13T13:13:13')
->setValidator(
FormValidator::get()
->setDateTimeISO()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set a valid German date as default text
* - set validator (must be German date)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('datedetest')
->setLabel('standard text input (must be German date)')
->setText('1.12.2002')
->setValidator(
FormValidator::get()
->setDateDE()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set valid German time as default value
* - set validator (must be German time)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('timedetest')
->setLabel('standard text input (must be a German time):')
->setText('13:13h')
->setValidator(
FormValidator::get()
->setTimeDE()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set valid German time as default value
* - set validator (must be German time)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('datetimedetest')
->setLabel('standard text input (must be a German datetime):')
->setText('13.12.2012 12:30:59')
->setValidator(
FormValidator::get()
->setDateTimeDE()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set a valid english decimal number as default text
* - set validator (must be english decimal number)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('numbertest')
->setLabel('standard text input (must be english decimal number):')
->setText('100.1')
->setValidator(
FormValidator::get()
->setNumber()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a standard text input and add it to the fieldset.
* - add a label
* - set a valid German decimal number as default text
* - set validator (must be German decimal number)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputText::get('numberdetest')
->setLabel('standard text input (must be German decimal number):')
->setText('100,1')
->setValidator(
FormValidator::get()
->setNumberDE()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a password text input and add it to the fieldset.
* - add a label
* - set a default text
* - set max char number to 8
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputPassword::get('pass1')
->setLabel('password text input:')
->setText('testtest')
->setMaxLength(8)
->refill()
);
/**
* Create a file input and add it to the fieldset.
* - add a label
* - set a default text (to show that it doesn't show)
* - set accept (will not be used by browsers, but could be used for internal checks)
* - refill from default refiller (get/post)
*/
$testFieldSet->addElement(
InputFile::get('file1')
->setLabel('file input:')
->setText('no file selected')
->setAccept('text/*')
);
/**
* Add the fieldset to the form (cell 1)
*/
$testForm->addElement($testFieldSet);
/**
* Create an align block to insert buttons into the form, but being aligned right instead of left.
*/
$testAlignBlock = AlignBlock::get();
/**
* Add input submit to align block.
* - set button caption
*/
$testAlignBlock->addElement(
InputSubmit::get('save', 'save')
->setCaption('submit')
);
/**
* Add alternative image-submit to align block.
* - set image-url
* - coords of clicks are shown down below in the result-display of the form
*/
$testAlignBlock->addElement(
InputImage::get('imgsave', 'imgsave')
->setSrc('img/submit.png')
);
/**
* Add reset-button to align block.
* - set button caption
*/
$testAlignBlock->addElement(
InputReset::get('reset', 'reset')
->setCaption('reset')
);
/**
* Add input button to align block.
* - set button caption
* - set the button disabled
*/
$testAlignBlock->addElement(
InputButton::get('btn1', 'btn1')
->setCaption('random button')
->setDisabled()
);
/**
* Insert align block directly into the form, beneath the fieldset.
*/
$testForm->addElement($testAlignBlock);
/**
* Add a second cell to the form.
*/
$testForm->addCell();
//--|SECOND-FIELDSET----------
/**
* Create a second fieldset.
* - set legend
*/
$testFieldSet2 = FieldSet::get()->setLegend('extended widgets');
/**
* Create standard text input and add it to second fieldset.
* - add a label
* - set valid default text (10 length)
* - set widget title
* - set validator (must be filled, must have min 3 chars, must hav max 10 chars, only letters and umlauts)
* - refill from default refiller (get/post)
*/
$testFieldSet2->addElement(
InputText::get('testtextinput2')
->setLabel('standard text input (text length between 3 and 10):')
->setText('lolcatpaws')
->setTitle('between 3 and 10 please')
->setValidator(
FormValidator::get()
->setRequired()
->setMinLength(3)
->setMaxLength(10)
->setCharacterClass('a-zA-ZäöüÄÖÜß')
->activateJavascriptValidation()
)
->refill()
);
/**
* Create standard text input and add it to second fieldset.
* - add a label
* - set valid default text (5 length)
* - set validator (must have between 4 and 6 chars)
* - refill from default refiller (get/post)
*/
$testFieldSet2->addElement(
InputText::get('testtextinput3')
->setLabel('standard text input (text length between 4 and 6):')
->setText('tenso')
->setValidator(
FormValidator::get()
->setRangeLength(array(4,6))
->activateJavascriptValidation()
)
->refill()
);
/**
* Create standard text input and add it to second fieldset.
* - add a label
* - set valid default text
* - set validator (value must be min 3, value must be max 10)
* - refill from default refiller (get/post)
*/
$testFieldSet2->addElement(
InputText::get('testtextinput5')
->setLabel('standard text input (value between 3 and 10):')
->setText('4')
->setValidator(
FormValidator::get()
->setMin(3)
->setMax(10)
->activateJavascriptValidation()
)
->refill()
);
/**
* Create standard text input and add it to second fieldset.
* - add a label
* - set valid default text
* - set validator (value must be between 4 and 6)
* - refill from default refiller (get/post)
*/
$testFieldSet2->addElement(
InputText::get('testtextinput6')
->setLabel('standard text input (value between 4 and 6):')
->setText('5')
->setValidator(
FormValidator::get()
->setRange(array(4, 6))
->activateJavascriptValidation()
)
->refill()
);
/**
* Create standard text input and add it to second fieldset.
* - add a label
* - add random bordered css-class
* - set valid default text (absolute url)
* - set validator (value must be a valid url)
* - refill from default refiller (get/post)
*/
$testFieldSet2->addElement(
InputText::get('testtextinput4')
->setLabel('standard text input (must be url):')
->addCssClasses('bordered')
->setText('http://www.google.com')
->setValidator(
FormValidator::get()
->setUrl()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create a radiogroup and add it to second fieldset.
* - add a label
* - set selectable options (value => labeltext)
* - set default selection
* - set options disabled by several values
* - set width of radiogroup (amount of radiobutton-cols)
* - refill from default refiller (get/post)
*/
$testFieldSet2->addElement(
InputRadio::get('radios1')
->setLabel('radiogroup:')
->setOptions(array('a' => 'radio1', 'b' => 'radio2', 'c' => 'radio3', 'd' => 'radio4', 'e' => 'radio5', 'f' => 'radio6'))
->setOptionCssClasses(array('allthesame'))
->setOptionTitles(array('one', 'two', 'three', 'four'))
->setSelected('d')
->setDisabled(array('e', 'f'))
->setWidth(3)
->refill()
);
/**
* Create a checkboxgroup and add it to second fieldset (not instantly here).
* - add a label
* - set random css-class to prove that it isn't rendered (makes no sense for composita)
* - set selectable options (value => labeltext)
* - disable single option by index
* - set css-classes for options (cycle if number smaller than option count)
* - set default selection
*/
$checkbox1 = InputCheckbox::get('check1')
->setLabel('checkboxgroup:')
->setCssClasses('nothing')
->setOptions(array('a' => 'check1', 'b' => 'check2', 'c' => 'check3', 'd' => 'check4', 'e' => 'check5'))
->setOptionCssClasses(array('odd', 'equal', 'even'))
->setOptionTitles(array('just one for all'))
->setSelected(array('b', 'c'))
->setDisabled(5)
;
$testFieldSet2->addElement($checkbox1);
/**
* Create a datetime text input and add it to second fieldset.
* - add a label
* - set a valid date text value
* - set text readonly, to prevent direct editing
* - set widget up for German dates
* - set time format to am/pm-notation
* - set navigation by arrows
* - set up time display
* - set config-values for javascript(3 chars for weekdays, color for sundays, color for saturdays, color for weekdays)
* - set validator (must be German date)
* - refill from default refiller (get/post)
*/
$testFieldSet2->addElement(
JsDateTime::get('cal1', 'cal1')
->setLabel('datetime (German date):')
->setText('12.12.2008')
->setReadonly()
->setUpAsGermanDate()
->setAmPmTime()
->setArrowSelection()
->showTime()
->setJsConfigVars(
array(
'SpanBorderColor' => '#37c900',
'CalBgColor' => '#444444',
'WeekChar' => 3,
'SundayColor' => '#333333',
'SaturdayColor' => '#333333',
'WeekDayColor' => '#444444',
'TodayColor' => '#666666',
'SelDateColor' => '#37c900',
'YrSelColor' => '#ffffff'
)
)
->setValidator(
FormValidator::get()
->setDateDE()
->activateJavascriptValidation()
)
->refill()
);
/**
* Create textarea and add it to the second fieldset.
* - add a label
* - add a random javascript-event-handler
* - add a valid text
* - set dimensions of textarea (20 cols, 10 rows)
* - set validator (custom case, with message result, empty string represents true here)
* - refill from default refiller (get/post)
*/
$testFieldSet2->addElement(
TextArea::get('textarea1')
->setLabel('textarea (only normal chars, umlauts and punctuation, not empty, single number zero is considered empty):')
->setJavascriptEventHandler('onclick', 'alert(\'onclick-test\');')
->setText('Hello world!')
->setSize(20, 10)
->setValidator(
FormValidator::get()
->setNotEmpty(array(0))
->setCustomCase(array(
preg_match('/^[a-zA-ZäöüÄÖÜß!.,? ]+$/u', isset($_REQUEST['textarea1']) ? $_REQUEST['textarea1'] : 'Hallo Welt!')
? ''
: 'Keinen Murks in den Fließtext ey!'
,
"
res = /^[a-zA-ZäöüÄÖÜß!.,? ]+$/.test($(this).val())
? ''
: 'Keinen Murks in den Fließtext ey!'
;
"
))
->activateJavascriptValidation()
)
->refill()
);
/**
* Add second fieldset to second cell of the form.
*/
$testForm->addElement($testFieldSet2, 2);
/**
* Create a custom html-content a append it in the middle of the form after a specific widget.
*/
$testForm->insertElementAfter('testselectlistmultiple',
CustomHtml::get()
->setHtml(
'
' .'This piece was injected into the middle of the form after completely building it.' .'
' ) ); /** * Set a headline and an explanation for the form. */ $testForm->setHeadline('HtmlForm Testcase Scenario'); $testForm->setExplanation( 'Use this form to test out the possibilities and see what else is possible. Feel free to break it...'.print_r($valueSet, true).'' .($valueSet->imgsave ? '
'.print_r($testForm->getElementByName('imgsave')->getCoords(), true).'' : '') .'