hina_shams
12 years agoNew Contributor
Selecting items by substring in tree view
Hi, I was wondering, if there is a way to select item by providing a substring in tree view. For example you can select items by index or by exact name like item(0) or item("flight"). Can you...
- 7 years ago
Hello,
If someone is interested in this, that is the way to resolve my issue:
methodName = "LocateByDisplayText";
request = new RestRequest("1/sys/" + mainViewId + "/method/" + methodName, Method.GET);
request.AddParameter("arg1", 0);
request.AddParameter("arg2", request.JsonSerializer.Serialize(new { id = gridColumnId })); // Making a JSON based on the GridColumn id
request.AddParameter("arg3", "\"Nissan\"");
response = restClient.Execute(request);
Regards,
Maria