5

我想知道如何在 kendo ui + angular 中为下拉列表设置占位符。

目前我有:

模板

<select kendo-drop-down-list ng-model="selectedElement" k-options="options" >
</select>

控制器

...
$scope.options = {
        dataTextField: 'label',
        dataValueField: 'id',
        dataSource: {
            data: [
                {
                    "label": "Please Select..."
                },
                {
                    "id": "linear",
                    "label": "Sample Linear"
                },
                {
                    "id": "bar",
                    "label": "Sample Bar"
                }
            ]
        }
    };
...

如果我用后端调用替换数据源,我不能在那里有“请选择”。有没有其他方法可以解决这个问题?

我尝试按照此链接中的说明使用data-option-label="Please Select",但没有运气。

4

1 回答 1

9

好吧,您可以将其定义为数据属性(更多信息在这里

模板

<select kendo-drop-down-list k-option-label="'item1'" ng-model="selectedElement" k-options="options" >
</select>

或在 $scope 中设置optionLabel选项

控制器

...
$scope.options = {
    optionLabel: "Item...",
    dataTextField: 'label',
    dataValueField: 'id',
    dataSource: {
        data: [
            {
                "label": "Please Select..."
            },
            {
                "id": "linear",
                "label": "Sample Linear"
            },
            {
                "id": "bar",
                "label": "Sample Bar"
            }
        ]
    }
};

...

于 2014-09-03T09:56:05.770 回答