Hello,
I am using SC 8 (jan 5th version).
I am trying to display the value from a different datasource. When I display only one value it displays the correct value. But when I put 2 columns it does not display correct.
works, but not
Is there any way to display the value of multiple fields in the displayField since the field I need is only a read-only field.
thanks,
~S
I am using SC 8 (jan 5th version).
I am trying to display the value from a different datasource. When I display only one value it displays the correct value. But when I put 2 columns it does not display correct.
Code:
{name: "zone_id", align: "left", title: "Zone name", required: true,
valueField: "zone_id",
displayField: "zone_name",
optionDataSource:"customDS_zone",
showHover:true,hoverHTML:"return phoneList.getCellValue(record, rowNum, 0);"},
Code:
{name: "zone_id", align: "left", title: "Zone name", required: true,
valueField: "zone_id",
displayField: "zone_name",
optionDataSource:"customDS_zone"},
{name: "zone_id", align: "left", title: "Address", required: true,
valueField: "zone_id",
displayField: "address1",
optionDataSource:"customDS_zone"
},
thanks,
~S
Comment