Hi,
after instalation RSForm addon I dont see any table when I create new template for export, only CSVI Pro and Joomla
Rudolf
- easysoftware
- RO CSVI
- Tuesday, 30 August 2016
- Subscribe via email
0
Accepted Answer
Pending Moderation
Hello Rudolf,
Can you confirm if you have installed CSVI RSForm addon extension? You can download this extension from CSVI site and in downloads page.
Can you confirm if you have installed CSVI RSForm addon extension? You can download this extension from CSVI site and in downloads page.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hello Rudolf,
Try doing reset of tasks and update of your available fields too.
Try doing reset of tasks and update of your available fields too.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hi,
reset avalaible fields I did, but tasks didn't.
Now I update both and voila! I see RSForm
Ok, this topic You can closed.
But now I need add static field (my custom fields with my custom text for every template another).
How can I add custom field (not from table submission) in my template?
ETC:
ID - FormID
COMPANY - cname
CONTACT - name
EMAIL - email
TEL - tel
SOURCE - webform (my custom static text)
TYPE - form_123_export.csv (my custom static text)
NOTE - all another fields from submission table (groupped and set delimiter as
- I think only with change code CSVImproved, isn't it?
Thanks Rudolf
Rudolf
reset avalaible fields I did, but tasks didn't.
Now I update both and voila! I see RSForm

Ok, this topic You can closed.
But now I need add static field (my custom fields with my custom text for every template another).
How can I add custom field (not from table submission) in my template?
ETC:
ID - FormID
COMPANY - cname
CONTACT - name
EMAIL - email
TEL - tel
SOURCE - webform (my custom static text)
TYPE - form_123_export.csv (my custom static text)
NOTE - all another fields from submission table (groupped and set delimiter as

Thanks Rudolf
Rudolf
Accepted Answer
Pending Moderation
Ok, I think I need use this?
https://csvimproved.com/support/questions-and-answers/902-adding-your-own-custom-fields
And for my case is this right? Because I don't see my custom fields after update fileds inside Submission:
INSERT IGNORE INTO `#__csvi_available_fields` (`csvi_name`, `component_name`, `component_table`, `component`) VALUES
('typ', 'typ', 'submission', 'com_rsform');
https://csvimproved.com/support/questions-and-answers/902-adding-your-own-custom-fields
And for my case is this right? Because I don't see my custom fields after update fileds inside Submission:
INSERT IGNORE INTO `#__csvi_available_fields` (`csvi_name`, `component_name`, `component_table`, `component`) VALUES
('typ', 'typ', 'submission', 'com_rsform');
Accepted Answer
Pending Moderation
Hello Rudolf,
Yes, you can update your own custom available fields as explained in the document. Just a small change in the query
INSERT IGNORE INTO `#__csvi_available_fields` (`csvi_name`, `component_name`, `component_table`, `component`, `action`) VALUES
('typ', 'typ', 'submission', 'com_rsform', 'export');
Try and let me know if it works.
Yes, you can update your own custom available fields as explained in the document. Just a small change in the query
INSERT IGNORE INTO `#__csvi_available_fields` (`csvi_name`, `component_name`, `component_table`, `component`, `action`) VALUES
('typ', 'typ', 'submission', 'com_rsform', 'export');
Try and let me know if it works.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hi,
it works, but you can't say in which files.
So I think in sql in addon rsfom?
it works, but you can't say in which files.
So I think in sql in addon rsfom?
Accepted Answer
Pending Moderation
Hello,
No, it should go into com_csvi/install/availablefields/. This is also explained in the document.
No, it should go into com_csvi/install/availablefields/. This is also explained in the document.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hello Rudolf,
I just realised that override functionality for custom available fields doesn't work anymore in CSVI 6 version. I am working on this fix and will send the patch file when it is ready.
I just realised that override functionality for custom available fields doesn't work anymore in CSVI 6 version. I am working on this fix and will send the patch file when it is ready.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hello all,
Let me clarify one thing, in an earlier post I read this:
The submission export currently only exports what is in the submission table. I never realized that the static texts were not stored as part of the submissions.
Rather than building your own SQL files, I would say just use the custom field, that is why it is there.
Let me clarify one thing, in an earlier post I read this:
SOURCE - webform (my custom static text)If these fields are static, why not just add them as custom field in CSVI and set a default value. CSVI will then always export only the default value.
TYPE - form_123_export.csv (my custom static text)
The submission export currently only exports what is in the submission table. I never realized that the static texts were not stored as part of the submissions.
Rather than building your own SQL files, I would say just use the custom field, that is why it is there.
Kind regards,
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hi,
ok, send me the patch after finished.
In this time i put override inside addon rsform folder and I see my customfiled.
ok, send me the patch after finished.
In this time i put override inside addon rsform folder and I see my customfiled.
Accepted Answer
Pending Moderation
Hello,
The patch file is ready and is attached with the post. You need to load the patch file with CSVI maintenance option and create a file with name override.sql with your custom fields and put it in administrator/components/com_csvi/addon/com_rsform/install/ folder. CSVI will read this file and update your custom fields along with other available fields.
patch_override_2016_09_07.zip
The patch file is ready and is attached with the post. You need to load the patch file with CSVI maintenance option and create a file with name override.sql with your custom fields and put it in administrator/components/com_csvi/addon/com_rsform/install/ folder. CSVI will read this file and update your custom fields along with other available fields.
patch_override_2016_09_07.zip
Attachments (1)
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hello,
Have you tried using the custom field as I described earlier?
Have you tried using the custom field as I described earlier?
Kind regards,
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
- Page :
- 1
There are no replies made for this post yet.
Be one of the first to reply to this post!
Be one of the first to reply to this post!
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here. Register Here »