Exemple #1
0
        public void RAD1MELEMENTIVEZACommand(object sender, EventArgs e)
        {
            RAD1MELEMENTIVEZAWorkWithWorkItem item = this.WorkItem.Items.Get <RAD1MELEMENTIVEZAWorkWithWorkItem>("Placa.RAD1MELEMENTIVEZA");

            if (item == null)
            {
                item = this.WorkItem.Items.AddNew <RAD1MELEMENTIVEZAWorkWithWorkItem>("Placa.RAD1MELEMENTIVEZA");
            }
            item.Show(item.Workspaces["main"]);
        }
Exemple #2
0
 public void ShowRAD1MELEMENTIVEZA(object sender, EventArgs e)
 {
     if (this.CurrentRow != null)
     {
         RAD1MELEMENTIVEZAWorkWithWorkItem item = this.WorkItem.Parent.Items.Get <RAD1MELEMENTIVEZAWorkWithWorkItem>("Placa.RAD1MELEMENTIVEZAFillByIDELEMENT");
         if (item == null)
         {
             item = this.WorkItem.Parent.Items.AddNew <RAD1MELEMENTIVEZAWorkWithWorkItem>("Placa.RAD1MELEMENTIVEZAFillByIDELEMENT");
         }
         item.Show(this.WorkItem.Workspaces["main"], "FillByIDELEMENT", this.CurrentRow);
     }
 }