Example #1
0
 public void MyGrid_Delete(object sender,DataGridCommandEventArgs e)
 {
     string Priority = dgJumpList.DataKeys[e.Item.ItemIndex].ToString();
     UDS.Components.DocumentFlow df = new UDS.Components.DocumentFlow();
     df.DeleteJump(FlowID,StepID,Int32.Parse(Priority));
     df = null;
     Bind();
 }
Example #2
0
        public void MyGrid_Delete(object sender, DataGridCommandEventArgs e)
        {
            string Priority = dgJumpList.DataKeys[e.Item.ItemIndex].ToString();

            UDS.Components.DocumentFlow df = new UDS.Components.DocumentFlow();
            df.DeleteJump(FlowID, StepID, Int32.Parse(Priority));
            df = null;
            Bind();
        }