Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 6th, 2012  |  syntax: None  |  size: 0.47 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. SyncFusion GridDataBouondGrid DataBinding Issue
  2. private void Form1_Load(object sender, EventArgs e)
  3. {
  4. this.gridDataBoundGrid.CurrentCellErrorMessage += new GridCurrentCellErrorMessageEventHandler(gridDataBoundGrid_CurrentCellErrorMessage);
  5. }
  6.  
  7. void gridDataBoundGrid_CurrentCellErrorMessage(object sender, GridCurrentCellErrorMessageEventArgs e)
  8. {
  9. //e.Text = "My Text";
  10. MessageBox.Show("Type your custom message here. The original text is: "" + e.Text+ """);
  11. e.Cancel = true;
  12. }