在Javascript和Telerik RadFormDecorator中级联选择

时间:2013-09-05 07:09:27

标签: telerik telerik-radformdecorator

我正在努力使用telerik表单装饰器使我的级联选择装饰。这是我的js,

var attributes = s.attributes;
        for (var i = 0, iLen = attributes.length; i < iLen ; i++) {
            $elem.append('<option ' + (selectedValue === attributes[i].id ? 'selected ' : '') + 'value="' + attributes[i].id + '">' + attributes[i].name + '</option>');
        }

此后我打电话,

formDecorator.decorate($elem[0], false);

它仅在父选择更改时(在级联选择中)第一次有效。但在此之后没有任何作用。我试过了,

formDecorator.decorate();

formDecorator.updateSelect($elem[0]);

有没有办法让它发挥作用?

1 个答案:

答案 0 :(得分:1)

在Telerik的论坛中快速搜索给了我这个似乎有用的回复:http://www.telerik.com/community/forums/aspnet-ajax/form-decorator/cascading-select-in-javascrip-and-telerik-radformdecorator.aspx。我会试一试,发布在那里让更多人看到。我希望它可以帮助你。