データを Telerik MVC MultiColumn Combo ボックスにバインドしています。テーブルを作成するために、3 つの td で 3 つの列 (e.selectedField.fieldName、e.concatField1、e.concatField2) を揃えようとしています。以下の textValue にスタイルを適用し、この値をテーブルとしてバインドする方法は?
// Bind the data to the list control.
$.each(e.data, function (idx, record) {
var textValue = record[e.selectedField.fieldName] + " " + record[e.concatField1]+" " + record[e.concatField2];
bindData.push({ Value: record[e.valueField], Text: textValue });
});
ctrl.dataBind(bindData);