Hi Klas
Thanks for that. It never occurred to me it wasn't a feature as it is an option on field.
1
Is it worth me making a feature request or is it not available for a specific reason do you think?
2
Doing a bit of experimenting:
In content view, I passed a value to uri using beforerender field
$jInput = JFactory::getApplication()->input;
// Category ID
$jInput->set("art_catid", $fields['art_catid']->value);
Then in Site Form View of the Nested form, I tried to grab that value.
a) by Joomla!'s method
$jInput = JFactory::getApplication()->input;
var_dump($jInputb->get('art_catid','','STR'));
and also by
b) In live settings of 'nested' form, I tried to pull those values in using URL Variable: art_catid
-----
Should this be possible? It looks like it is not
So to summarise: To pass values to a form you.....
1
Need to assign any values to uri before you navigate to the page.
Assigning values using beforerender and before the other fields get rendered does not help.
2
Pass values using SD Live CCK field so long as the form is not nested, in other words, so long as it is not within the content view as SD live CCK is unable to do this.