I think there is a misunderstand, I assume you are going to count the user's inputs of Toolset post form in front-end.
If it is, those user's inputs have not been saved into database yet, so Views plugin won't be able to work here.
It needs custom JS codes, according to our support policy, we don't provide custom codes support:
https://toolset.com/toolset-support-policy/
Since you have already provided your website credentials, I can setup a demo for you.
Here are detail steps:
1) Edit the post form "El - registrering av ny":
hidden link
in section "Form editor", change line 11 from:
To:
<div class="row generelle-forhold">
<div style="background-color:green"><span class="wpcf-el-gen-1-ikke-kontrollert">0</span> Ikke kontrollert</div>
- Add a CSS class name "generelle-forhold" to that row DIV tag
- Add a green HTML div tag to display the count result
2) Click "JS Editor", add below JS codes:
jQuery(document).on('cred_form_ready', function(){ //Toolset form is loaded
jQuery('div.generelle-forhold input').on('change', function(event) {
var numberOfCheckedRadio = jQuery('div.generelle-forhold input[type="radio"][value="3"]:checked').length
jQuery('span.generelle-forhold-ikke-kontrollert').html(numberOfCheckedRadio);
});
var numberOfCheckedRadio = jQuery('div.generelle-forhold input[type="radio"][value="3"]:checked').length
jQuery('span.generelle-forhold-ikke-kontrollert').html(numberOfCheckedRadio);
});
Test it in front-end, it works fine
hidden link
It is only a demo for your reference, you will need to customize those JS codes according to your website settings.
There are some related post in other website, for example:
https://stackoverflow.com/questions/6913848/count-of-selected-radio-buttons-in-jquery