I have a query that returns results with jquerybuilder but the results are empty because it needs to convert "<"
in html result like this "<";
. when i launch the from the search bar less than "something" it shows empty results
Here is the code that I want to add this change to:
// GET: Search/GetJsonForQuery
public JsonResult GetJsonForQuery(ObjectJson serializedJson) {
if (serializedJson.MainObjects == null) {
JsonResult result = Json(new {
updated = DateTime.UtcNow.ToString("o"),
errorNoItemSelected = true
},
JsonRequestBehavior.AllowGet);
result.MaxJsonLength = Int32.MaxValue;
return result;
}
if (!IsColumnSelected(serializedJson)) {
JsonResult result = Json(new {
updated = DateTime.UtcNow.ToString("o"),
errorNoColumnSelected = true
},
JsonRequestBehavior.AllowGet);
result.MaxJsonLength = Int32.MaxValue;
return result;
}
}