Welcome the Technical Support section. Help us in assisting you by providing us with a concise and descriptive elaboration of your issues. Be specific and if possible, provide us with a step-by-step instruction in replicating your problem.
Back-end Group Creation Issue (Disappearing Scroll Bar)
When you are creating groups in the back-end of JomSocial you encounter an issue with the scroll bar disappearing from the site after assigning a group to an administrator.
Let me explain to you the steps.
1. Back-end of JomSocial
2. View Groups
3. Create a new group
4. Name the group and give it a description
5. Assign it to a specific administrator.
6. Scroll bar on the side of the page disappears.
Once number six occurs you are unable to scroll up or down on the Group Creation page. This prevents you from being able to select items such as the group settings for image and video uploads and in some cases even prevents you from being able to select the "Save and Close" button.
Additionally, once you select an administrator to assign the group to. The blue 'select' button becomes unresponsive. You can see the webpage indicator processing the request momentarily, but the window to select a different administrator does not appear.
I will appreciate your assistance in resolving these issues. As it does cause a notable problem when creating groups.
Hi Steven,
This issue is fixed and hopefully will be will our next jomsocial release (3.2.1.3+).
Meanwhile if you need then send us ftp info by editing your first post of this topic.
Thanks
Hi Steven,
The ftp access is working fine and I have updated the fix at your site.
Please check.
Here is the fix done at "root/administrator/components/com_community/views/groups/tmpl/edit.php"
function jSelectUser_jform_user_id_to(id,name){
joms.jQuery("#sbox-window, #sbox-overlay").hide();
joms.jQuery("#creator_name").val(name);
joms.jQuery("#creator_id").val(id);
}
replaced by
function jSelectUser_jform_user_id_to(id,name){
joms.jQuery("#creator_name").val(name);
joms.jQuery("#creator_id").val(id);
if (window.SqueezeBox) {
SqueezeBox.close();
}
}