我有一個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 2013-02-21 09:04:49
我建議你聯繫DevExpress支持。 – Mikhail 2013-02-21 19:55:56