These two fieldtypes don't have any function outside of the PW PageEdit Process, so aren't really applicable in the API for the most part. Let me know if I've misunderstood your question? If you are building a form elsewhere, it's more likely that you would want to use the InputfieldFieldset:
$form = wire('modules')->get('InputfieldForm');
$form->attr('method', 'post');
$form->attr('action', './');
$fieldset = wire('modules')->get('InputfieldFieldset');
$fieldset->label = 'This is a fieldset';
$fieldset->description = 'Some optional extra copy if you want it.';
$field = wire('modules')->get('InputfieldText');
$field->attr('name', 'title');
$field->label = 'Title';
$field->description = 'Extra description';
$fieldset->add($field);
$form->add($fieldset);
echo $form->render();
Thank you so much for your prompt reply, I just want to take the field and divide them into categories, so I decided to use the fieldset to preserve the multi-language.
For example:
http://www.yachtbrok.../barca37016.htm"specifiche" in English must be specific.
But if I use an editable field risk being edited by the user should not edit it instead ...
To have an ordered structure wanted to use the possibility of fieldset ...
Otherwise I can use simple PHP like IF or SWITCH
if ($_GET['language']=='it') {
echo 'specifiche';
} else {
echo 'specifics';
}thanks again
Edited by buothz, 17 April 2012 - 12:08 PM.