Sencha Touch - Scheda layout
Descrizione
Card- Questo layout dispone i diversi componenti in modo tab. Le schede verranno visualizzate nella parte superiore del contenitore. Ogni volta che è visibile solo una scheda e ogni scheda è considerata come un componente diverso.
Sintassi
Di seguito è riportata la semplice sintassi per utilizzare il layout della scheda.
layout: 'card'
Esempio
Di seguito è riportato un semplice esempio che mostra l'utilizzo del layout della scheda.
<!DOCTYPE html>
<html>
<head>
<link href = "https://cdn.sencha.com/touch/sencha-touch-2.4.2/resources/css/sencha-touch.css" rel = "stylesheet" />
<script type = "text/javascript" src = "https://cdn.sencha.com/touch/sencha-touch-2.4.2/sencha-touch-all.js"></script>
<script type = "text/javascript">
Ext.application({
name: 'Sencha', launch: function() {
var panel = Ext.create('Ext.Panel', {
layout: 'card', items: [
{
html: "First Item index value is 0"
},
{
html: "Second Item index value is 1 which we are setting as active index"
},
{
html: "Third Item index value is 2"
},
{
html: "Fourth Item index value is 3"
}
]
});
panel.setActiveItem(1);
Ext.Viewport.add(panel);
}
});
</script>
</head>
<body>
</body>
</html>
Questo produrrà il seguente risultato: