mirror of https://github.com/apache/cloudstack.git
On click of tier name, show a detail view of the specific tier.
This implemented as follows:
tiers: {
detailView: {
name: 'Tier details',
tabs: {
details: {
title: 'Details',
fields: [
{ id: { label: 'ID' }},
{
name: { label: 'Name' },
cidr: { label: 'CIDR' }
}
],
dataProvider: function(args) {
args.response.success({
data: args.context.networks[0]
});
}
}
}
},
...
|
||
|---|---|---|
| .. | ||
| css | ||
| images | ||
| lib | ||
| scripts | ||
| .classpath | ||
| .project | ||
| index.jsp | ||