tags:

views:

466

answers:

1

Hi,

How to embed the Flex Grid in ExtJs framework.

Thanks, Ravi

+1  A: 

I search in google, i got a code.

Please check it and let me know if i am wrong.

**

 var mclock;   
 document.write(   
   mclock=new Ext.ux.Media.Flash(

       {mediaCfg:{   
                 url    : 'clock.swf'   
                 ,id     : 'inlineClock'   
                 ,style  : {display:'inline',width:'100px',height:'80px'} 
                 ,start    : true
                 ,loop     : true
                 ,controls :false
                 ,params: {   
                           wmode     :'transparent'   
                           ,scale     :'exactfit'   
                           ,salign    :'t'   
                          }   
                 }     
        }

      )   

);

 

**

Ravi K Chowdary
Am i correct? if not please correct me
Ravi K Chowdary