Hi,
This is an old post, but may be it can be useful for someone.
I couldn't making the plugin work in a field because of the syntax of the plugin and the "remove space" parameters.
When i didn't select "Remove space" the value displayed was : {rsform id } . It doesn't work because of the space after id
When i did select "Remove space" the value displayed was {rsformid}. It doesn't work because there was no space beetween rsform and id
The trick is to add the space in the query with
Code:
CONCAT(' ',FormId) as value
So, here is a way to make RS Form PRo plugin works with a flexicontent field :
In backend : user can select a form created with RS Form PRo Component in a select list.
In frontend : the form is displayed in the position defined in the Item template manager.
How to configure the field :
Field Type : "Select List"
> Field specific properties
>> Basic Configuration
Trigger content plugins = Yes
Specific plugins only = rsform
Frontend display = value
>> Value Creation
Use SQL query = Yes
Field elements = SELECT CONCAT(' ',FormId) as value, FormName as text FROM #__rsform_forms WHERE Published=1
>> Prefix - Suffix - Separator
Remove space = Yes
Prefix text of the value = {rsform
Suffix text of the value = }
It works with :
Joomla 2.5.9
Flexicontent 2.0 r1648
RS Form Pro 1.4.0 Rev 46
Best regards