0

我有个问题 ,

Devexpress AspxGridwiew ToolBars 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;
    }

截屏

4

1 回答 1

0

解决了

AspxGridview.EnableCallBacks = False ;

于 2017-10-09T09:42:50.990 回答