XML DataSource にバインドする Kendo Grid があります。ドロップダウン リストの選択に基づいて、DataSource を変更するにはどうすればよいですか。例:
//Create DataSource
var gridDataSource = new kendo.data.DataSource({
transport: {
read: [DropDownListValue] + ".xml",
dataType: "xml"
}
});
gridDataSource.read();
function createGrid(){
var grid = $("#grid").kendoGrid({
dataSource: gridDataSource
}...
};
[DropDownListValue] はフォームのドロップダウン リストです。この例では、[DropDownListValue] = 1 の場合、データソースは「1.xml」になります。[DropDownListValue] = 2 の場合、データソースは「2.xml」になります。