Mobil Error repeated groups

I have got the follwing error on Mobiles ( Small Resolutions) when i add/delete repeated groups.
It works fine on bigger resolutions.
Any idea hint what causes the problem and how i can fix it?

Uncaught TypeError: Cannot read property 'destroy' of null
at CloneObject.cloned (element.js:3)
at CloneObject.e.extend.$owner [as $caller] (mootools-core.js?10d590b257b0ab453cf9b7adb17ab47d:38)
at CloneObject.a [as parent] (mootools-core.js?10d590b257b0ab453cf9b7adb17ab47d:38)
at CloneObject.cloned (databasejoin.js:884)
at CloneObject.e.extend.$owner (mootools-core.js?10d590b257b0ab453cf9b7adb17ab47d:38)
at Object.<anonymous> (form.js:4)
at Array.forEach (<anonymous>)
at Function.forEach (mootools-core.js?10d590b257b0ab453cf9b7adb17ab47d:5)
at Array.each (mootools-core.js?10d590b257b0ab453cf9b7adb17ab47d:9)
at Object.duplicateGroup (form.js:4)
 
Are you hiding (resp. not displaying) stuff on small screens (e.g. via conditional content from regular labs)?
 
Just use the below in CSS:

CSS:
@media (max-width: 600px) {
#group7,
#group40
{
    overflow-x: scroll;
    margin-left: 0px;
    margin-right: 20px;
}
}

@media (max-width: 600px) {
#group38
{
   
    margin-left: 20px;
    margin-right: 20px;
}
}

@media (max-width: 600px) {
#batch_list___reference,
#batch_list___notes,
#batch_list___uploads_container
{
       width: 373px!important;
}
}
 
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top