0
내가 문제가 아니 반응DevExpress의 Gridwiew 도구 모음 사용자 정의 버튼
DevExpress의 AspxGridwiew 도구 모음 CustomButtons 작동하지 않습니다.?
이벤트
protected void ASPxGridView1_CustomButtonCallback(object sender, ASPxGridViewCustomButtonCallbackEventArgs e)
{
if (e.ButtonID != "Detay") return;
id = ASPxGridView1.GetRowValues(ASPxGridView1.FocusedRowIndex, "ID").ToString();
ASPxPopupDetay.PopupHorizontalAlign = PopupHorizontalAlign.WindowCenter;
ASPxPopupDetay.PopupVerticalAlign = PopupVerticalAlign.WindowCenter;
ASPxPopupDetay.Modal = true;
ASPxPopupDetay.ShowOnPageLoad = true;
}