SN js 代码和 mvc 包含/返回修复字段值。我没有找到任何可以添加自定义字段来显示的设置。首先,那个 SN 包的版本是什么,因为 oData.svc 请求不适用于旧版本。它从 6.2 开始可用。关于 oData,这里有一个链接:http ://wiki.sensenet.com/OData_REST_API
还有另一种解决方法,但是这样,您需要修改现有的SN码。您需要将 (" /Root/Global/scripts/sn/SN.Picker.js ") 文件复制到具有相同结构的皮肤文件夹中。(" /Root/Skins/[yourskinfolder]/scripts/sn/SN.ReferenceGrid.js ") 您需要将 (" /Root/Global/scripts/sn/SN.ReferenceGrid.js ") 文件复制到您的皮肤文件夹中好。
请勿修改原始 SN 文件,因为它会在 SN 更新后被覆盖。
下一步:将以下代码复制到第 1068 行,在 ("$grid.jqGrid({") 行之前,进入 InitGrid 函数。
...
var neededTypeName = "ProjectContract";
var neededFieldName = "ContractNumber";
var findField = false;
o2 = (function () {
var result = [];
var itemArray = [];
$.each(o2, function (index, el) {
el.ContentField = "";
result.push(el);
if (el.ContentTypeName == neededTypeName) {
itemArray.push([index, el.Path]);
findField = true;
}
});
if (findField) {
$.each(itemArray, function (itemIndex, itemElArray) {
var itemId = itemElArray[0];
var itemEl = itemElArray[1];
var thisLength = itemEl.length;
var thislastSplash = itemEl.lastIndexOf("/");
var thisPath = itemEl.substring(0, thislastSplash) + "('" + itemEl.substring(thislastSplash + 1, thisLength) + "')";
$.ajax({
url: "/oData.svc" + thisPath + "?metadata=no$select=Path," + neededFieldName,
dataType: "json",
async: false,
success: function (d) {
result[itemId].ContentField = d.d[neededFieldName];
}
});
});
colNames.splice(6, 0, "ContentField");
colModel.splice(6, 0, { index: "ContentField", name: "ContentField", width: 100 });
return result;
}
return o2;
})();
...
$grid.jqGrid({
...
“neededTypeName”可能包含您的内容类型值,“neededFieldName”可能包含您要呈现的字段名称。另一个将建立网格。这将修改内容选择器表。
您需要将此代码添加到 GetResultDataFromRow 函数中,在函数返回之前的第 660 行。
...
if (rowdata.ContentField != undefined) {
result.ContentField = rowdata.ContentField;
}
...
这会将内容选择器中的选定项目属性添加到引用字段表中。
然后需要打开SN.ReferenceGrid.js,在init函数中"var $grid = $("#" + displayAreaId);"之前添加如下代码
var neededTypeName = "CustomItem2";
var neededFieldName = "Custom2Num";
var findField = false;
var alreadyAdded = false;
var btnAttr = $("#"+addButtonId).attr("onClick");
if (btnAttr.indexOf(neededTypeName) > -1) {
alreadyAdded = true;
colNames[4].width = 150;
colModel[4].width = 150;
colNames.splice(3, 0, "ContentField");
colModel.splice(3, 0, { index: "ContentField", name: "ContentField", width: 60 });
}
initialSelection = (function () {
var result = [];
var itemArray = [];
$.each(initialSelection, function (index, el) {
el.ContentField = "";
result.push(el);
if (el.ContentTypeName == neededTypeName) {
itemArray.push([index, el.Path]);
findField = true;
}
});
if (findField) {
$.each(itemArray, function (itemIndex, itemElArray) {
var itemId = itemElArray[0];
var itemEl = itemElArray[1];
var thisLength = itemEl.length;
var thislastSplash = itemEl.lastIndexOf("/");
var thisPath = itemEl.substring(0, thislastSplash) + "('" + itemEl.substring(thislastSplash + 1, thisLength) + "')";
$.ajax({
url: "/oData.svc" + thisPath + "?metadata=no$select=Path," + neededFieldName,
dataType: "json",
async: false,
success: function (d) {
result[itemId].ContentField = d.d[neededFieldName];
}
});
});
if (!alreadyAdded) {
colNames.splice(3, 0, "ContentField");
colModel.splice(3, 0, { index: "ContentField", name: "ContentField", width: 100 });
}
return result;
}
return initialSelection;
})();
我希望这会有所帮助,但 SN 版本应该会有所帮助。