나는 Devexpress Gridview을 가지고 있습니다. 서버 측의 Gridview에 GridViewCommandColumnCustomButton
을 생성했습니다. 이 사용자 정의 버튼 클릭에 Devexpress Gridview CustomButton에서 팝업을 여는 방법?
GridViewCommandColumn coldescriptor = new GridViewCommandColumn();
GridViewCommandColumnCustomButton CusButton = new GridViewCommandColumnCustomButton();
CusButton.ID = "btnPopup";
coldescriptor.VisibleIndex = 2;
CusButton.Image.Url = "~/Images/color2.jpg";
coldescriptor.ButtonType = ButtonType.Image;
coldescriptor.CustomButtons.Add(CusButton);
ggc_preview.Columns.Add(coldescriptor);
는, 나도 DevExpress의 팝업 제어 또는 다른 수단에 의해
팝업를 열어야합니다. 팝업 컨트롤 안에 동적으로 컨트롤을로드해야합니다.
GridViewCommandColumnCustomButton
에서 팝업을 어떻게 열 수 있습니까?
안녕하세요, 사용자 지정 단추를 클릭했을 때 팝업 컨트롤을 처리하여 서버 쪽에서 데이터를 바인딩하려고합니다. 어떤 제안있어? – altandogan
이 문제와 관련하여 DevExpress 지원부에 문의하는 것이 좋습니다. – Mikhail