UI의 다른 요소 (예 : 텍스트 상자 값, 라디오 단추 등)를 참조하는 매개 변수를 데이터를 가져 오기 위해 호출 된 컨트롤러로 전달할 수 있습니까? 자동 완성?검도 사용자 정의 자동 완성 - 결과를 필터링하기 위해 컨트롤러 메서드에 매개 변수를 전달하는 방법
예 : docs의 예에서, 홈 컨트롤러 GetProducts 액션을 호출하면 호출과 함께 매개 변수를 어떻게 보낼 수 있습니까?
또는 더 좋게도, ui의 다른 위젯에서 데이터를 참조하는 값을 포함하는 json 객체를 게시 하시겠습니까?
https://docs.telerik.com/aspnet-mvc/helpers/autocomplete/overview#ajax-binding
@(Html.Kendo().AutoComplete()
.Name("productAutoComplete") //The name of the AutoComplete is mandatory. It specifies the "id" attribute of the widget.
.DataTextField("ProductName") //Specify which property of the Product to be used by the AutoComplete.
.DataSource(source =>
{
source.Read(read =>
{
read.Action("GetProducts", "Home"); //Set the Action and Controller names.
})
.ServerFiltering(true); //If true, the DataSource will not filter the data on the client.
})
)
-Bitshift : - 답변을 살펴볼 기회를 얻었습니까? 마지막으로 본 상태가 1 시간이기 때문에 궁금해합니다. –