group fields storage

4 years 10 months ago #312345 by dhananjay_vp
Replied by dhananjay_vp on topic group fields storage
Please find attached document, I want Custom Tab 3 – Analysis to be implemented. This tab will be having 3 more sub tabs called 'State', 'District', 'Sub-District'
Attachments:

Please Log in to join the conversation.

4 years 10 months ago #312346 by krileon
Replied by krileon on topic group fields storage
You've no need to change the storage behavior then. You're not dealing with storage at all. You'd be using a CB Code Field and PHP. So all you need to do is json decode the fieldgroups and processing their JSON data into whatever format you need. Example as follows.

$fieldGroupData = json_decode( '[FIELD_NAME]', true ) ;

In the above $fieldGroupData will just be arrays of data. Example as follows.

array(
	0 => array( 'FIELD_NAME_survey' => 'test_1', 'FIELD_NAME_gat' => '123' ),
	1 => array( 'FIELD_NAME_survey' => 'test_2', 'FIELD_NAME_gat' => '456' ),
	2 => array( 'FIELD_NAME_survey' => 'test_3', 'FIELD_NAME_gat' => '789' )
)

Each sub array is a row so with my above example there's 3 rows. Each row contains its fields prefixed by the field group fields name instead of cb_. So you'd have for example cb_references_survey for cb_survey.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in to join the conversation.

Moderators: beatnantkrileon
Time to create page: 0.183 seconds