template @it_loading_page

Loading Page의 기본 템플릿이다.



See Also

Template

{
    name: '@it_loading_page',
    description: "Loading page template",
    template: {
        layout: "vlinear",
        itemsAlign: "center",
        itemsArrange: 'center',
        children: [{
            value: "${message;Data Loading...}",
            style: {
                fontFamily: "Courier New",
                fontSize: "16px",
                fontWeight: "bold",
                color: "#777"
            }
        }, {
            space: 30
        }, {
            renderer: {
                type: 'spinner'
            }
        }],
        style: {
            backgroundColor: "#f8f8f8",
            padding: '10px'
        }
    },
}