Multiview transitions with iframe

Hi,

I have a multiview with four views, but the animation doesn’t work, i am using iframes as view type.


dhx.ui({ id: 'app', view: 'layout', 
                	rows: [
                		{ view: 'layout', type: 'clean',
                			rows: [
                				{
                                    gravity:2,  
                                    view:"multiview",
                                    id:"myMultiview",
                                    animate:{type:"slide", subtype:"together"},
                                    cells:[    
                                        {
                                            id:"login",
                                            view:"iframe",
                                            src:"login.html"
                                        },
                                        {
                                            id:"menu_inicio",
                                            view:"iframe",
                                            src:"menu_inicio.html"
                                        },
                                        {   id:"seg_actividad",
                                            view:"iframe",
                                            src:"seguimiento_actividad.html"
                                        },
                                        
                                        {   id:"scheduler",
                                            view:"iframe",
                                            src:"scheduler.html"
                                        }
                                        ]
                                     
                                  },
                                  
                			], id: 'menu_layout'
                		}
                	]
                });        

Could you help me to know why doesn’t work the transitions?

Thanks

Regards

Hi,

We have tested you demo with the following command:

$$(“seg_actividad”).show();

animation works.