quick search: "Users" to "Account Home", Users in top (fix)

This commit is contained in:
doctogonzo 2015-05-18 14:26:27 +02:00
parent a1a212f0ed
commit 9832131b0d
2 changed files with 5 additions and 3 deletions

View file

@ -101,7 +101,8 @@ namespace WebsitePanel.WebPortal
obj["TextSearch"] = row["PackageName"].ToString();
obj["ItemID"] = row["ItemID"].ToString();
obj["PackageID"] = row["PackageID"].ToString();
obj["FullType"] = GetTypeDisplayName("Space");
obj["FullType"] = "Space";
obj["FullTypeLocalized"] = GetTypeDisplayName("Space");
obj["AccountID"] = row["AccountID"].ToString();
dataList.Add(obj);
}
@ -127,7 +128,8 @@ namespace WebsitePanel.WebPortal
obj["TextSearch"] = row["TextSearch"].ToString();
obj["ItemID"] = row["ItemID"].ToString();
obj["PackageID"] = row["PackageID"].ToString();
obj["FullType"] = GetTypeDisplayName(type);
obj["FullType"] = type;
obj["FullTypeLocalized"] = GetTypeDisplayName(type);
obj["AccountID"] = row["AccountID"].ToString();
if (String.Equals(type, "Users"))
dataList.Insert(currUser++, obj);

View file

@ -30,7 +30,7 @@
{
response($.map(data, function (item) {
return {
label: item.TextSearch + " [" + item.FullType + "]",
label: item.TextSearch + " [" + item.FullTypeLocalized + "]",
code: item
};
}));