Exemplo n.º 1
0
 protected void RefreshGrid(bool rebind)
 {
     if (patient == null)
     {
         RadGrid1.DataSource = CntAriCli.GetDiagnostics(ctx);
     }
     else
     {
         RadGrid1.DataSource = patient.DiagnosticAssigneds;
     }
     if (rebind)
     {
         RadGrid1.Rebind();
     }
 }