Skip to content

Replies

0
Mypost
Mypost answered on Aug 10, 2011 8:15 AM

i am doing same as you suggest, but there is one diffrance

My WebDialogWIndow is within the UpdatePanel.

 

0
Mypost
Mypost answered on Mar 31, 2011 5:56 AM

Hi,
you can hide the Band in BeginExport event of UltraGridExporter

like this

 private void OnGridBeginExport(object sender, BeginExportEventArgs e) {
    e.Layout.Bands[1].Hidden=true;
    }