Hi, 
I want to change the skin dynamically for the whole application, is it possible?
Please give me some hint.
Thanks
Sima
 
	
							
						
					I want to change the skin dynamically for the whole application, is it possible?
Please give me some hint.
Thanks
Sima
Code:
	
	isc.DynamicForm.create({
ID: "myform", 
    width: 600,colWidths:[300,130],
    numCols: 4,
    fields: [
        {name: "skin",
         title: "Look and Feel",
         type: "select",
         valueMap:{standard:"Standard",SmartClient:"SmartClient",Cupertino:"Cupertino",fleet:"Fleet"},
        defaultValue:"Cupertino",
        changed:function(){"CODE HERE"}
       }	
        
    ]
});

Comment