webix学习2

webix的tab页效果,用tabbar确定tab页,用cells确定tab的内容,通过id绑定


1:简单的tab页和表单绑定


<!DOCTYPE html>
<html>
<head lang="en">
    <link rel="stylesheet" href="../css/webix.css" type="text/css">
    <script src="../js/webix_debug.js" type="text/javascript"></script>
    <meta charset="UTF-8">
    <title>webix09</title>
    <style>
        #areaA, #areaB {
            margin: 50px 10px;
            width: 320px;
            height: 400px;
            float: left;
        }
        .webix_layout_space {
            background-color: #fff;
        }
    </style>
</head>
<body>
<div id="areaA"></div>
<div id="areaB">
    <div style="padding:10px">
        <input type="number" name="rank"/><br/>
        <input type="text" name="title" value="" placeholder="Book title"/><br/>
        <input type="date" name="year" value="" placeholder="Year"/><br/><br/>
        <input type="button" value="Submit" οnclick='$$("formView").save()'/>
    </div>
</div>
<script type="text/javascript" charset="UTF-8">
    var small_film_set = [
        {id: 1, title: "The Shawshank Redemption", year: 1994, votes: 678790, rating: 9.2, rank: 1},
        {id: 2, title: "The Godfather", year: 1972, votes: 511495, rating: 9.2, rank: 2},
        {id: 3, title: "The Godfather: Part II", year: 1974, votes: 319352, rating: 9.0, rank: 3},
        {id: 4, title: "The Good, the Bad and the Ugly", year: 1966, votes: 213030, rating: 8.9, rank: 4},
        {id: 5, title: "My Fair Lady", year: 1964, votes: 533848, rating: 8.9, rank: 5},
        {id: 6, title: "12 Angry Men", year: 1957, votes: 164558, rating: 8.9, rank: 6}
    ];
    webix.ready(function () {
        webix.ui({
            container: "areaA",
            type: "space",
            padding: 8,
            rows: [
                {
                    borderless: true, view: "tabbar", id: "tabbar", value: "listView", multiview: true, options: [
                    {value: 'List', id: 'listView'},
                    {value: 'Form', id: 'formView'},
                    {value: 'Empty', id: 'emptyView'}
                ]
                },
                {
                    cells: [
                        {
                            id: "listView",
                            view: 'list',
                            template: "#rank#. #title# <div style='padding-left:18px'> Year:#year#, votes:#votes# </div>",
                            type: {
                                height: 60
                            },
                            select: true,

                            data: small_film_set
                        },
                        {
                            id: 'formView',
                            view: "htmlform",
                            content: "areaB",
                            rules: {
                                title: webix.rules.isNotEmpty,
                                year: webix.rules.isNumber,
                                rank: webix.rules.isNumber
                            }

                        },
                        {id: 'emptyView', template: " "}
                    ]
                }
            ]
        })
        $$('formView').bind($$('listView'));
    })
</script>
</body>
</html>



效果




2:简单的增加、移除tab页的效果

<!DOCTYPE html>
<html>
<head lang="en">
    <link rel="stylesheet" href="../css/webix.css" type="text/css">
    <script src="../js/webix_debug.js" type="text/javascript"></script>
    <meta charset="UTF-8">
    <title>webix10</title>
    <style type="text/css">
        #listA {
            width: 1000px;
            margin: 20px;
        }
    </style>
</head>
<body>
<div id="listA"></div>
<script type="text/javascript" charset="UTF-8">
    var small_film_set = [
        {id: 1, title: "The Shawshank Redemption", year: 1994, votes: 678790, rating: 9.2, rank: 1},
        {id: 2, title: "The Godfather", year: 1972, votes: 511495, rating: 9.2, rank: 2},
        {id: 3, title: "The Godfather: Part II", year: 1974, votes: 319352, rating: 9.0, rank: 3},
        {id: 4, title: "The Good, the Bad and the Ugly", year: 1966, votes: 213030, rating: 8.9, rank: 4},
        {id: 5, title: "My Fair Lady", year: 1964, votes: 533848, rating: 8.9, rank: 5},
        {id: 6, title: "12 Angry Men", year: 1957, votes: 164558, rating: 8.9, rank: 6}
    ];
    webix.ui({
        container: "listA",
        type: "space",
        rows: [
            {
                view: "toolbar", cols: [
                {view: "button", value: "Add New Film", width: 150, type: "form", align: "left", click: "add_new"}, {},
                {view: "button", value: "Delete Tab", width: 150, type: "danger", align: "right", click: "del_tab"}
            ]
            },
            {
                cols: [
                    {
                        view: 'list',
                        id: 'list1',
                        template: '#title#',
                        width: 300,
                        height: 400,
                        data: small_film_set,
                        select: true,
                        on: {
                            onItemClick: open_new_tab
                        }
                    },
                    {
                        type: "clean", rows: [
                        {id: "tabs", view: "tabbar", multiview: true, options: [], height: 50},
                        {
                            id: "views", cells: [
                            {view: "template", id: "tpl", template: "Pick a film from the list!"}
                        ]
                        }
                    ]
                    }
                ]
            }
        ]
    })
    function open_new_tab(id) {
        var item = $$('list1').getItem(id);
        //add tab
        if (!$$(item.id)) {
            $$("views").addView({
                view: "template",
                id: item.id,
                template: "Title:" + item.title + "<br>Year: " + item.year + "<br>Votes: " + item.votes
            });
            $$("tabs").addOption(item.id, item.title, true);
        }
        //or show if already added
        else
            $$("tabs").setValue(item.id);
    }

    function add_new() {
        $$("list1").add({
            title: "New title",
            year: 2000,
            rating: 5,
            votes: 1000
        }, 0)
    }

    function del_tab() {
        var id = $$("tabs").getValue();
        if (!id) return;
        $$("tabs").removeOption(id);

        //show default view if no tabs
        if ($$("tabs").config.options.length === 0)
            $$("tpl").show();

        $$("views").removeView(id);
        $$("list1").unselect(id);
    }
</script>
</body>
</html>

效果





  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值