Ejemplo n.º 1
0
 public void ToolbarClickHandler(Syncfusion.Blazor.Navigations.ClickEventArgs args)
 {
     if (args.Item.Text == "新增")
     {
         CurrentRecord            = new OutlineAdapterModel();
         EditRecordDialogTitle    = "新增紀錄";
         isNewRecordMode          = true;
         IsShowEditRecord         = true;
         CurrentRecord.CourseId   = Header.Id;
         CurrentRecord.CourseName = Header.Title;
     }
     else if (args.Item.Text == "重新整理")
     {
         dataGrid.RefreshGrid();
     }
 }
Ejemplo n.º 2
0
        public void OnCommandClicked(CommandClickEventArgs <OutlineAdapterModel> args)
        {
            OutlineAdapterModel item = args.RowData as OutlineAdapterModel;

            if (args.CommandColumn.ButtonOption.Content == "修改")
            {
                CurrentRecord         = item;
                EditRecordDialogTitle = "修改紀錄";
                IsShowEditRecord      = true;
                isNewRecordMode       = false;
            }
            else if (args.CommandColumn.ButtonOption.Content == "刪除")
            {
                #region 檢查關聯資料是否存在
                #endregion
                CurrentNeedDeleteRecord = item;
                ConfirmMessageBox.Show("400px", "200px", "警告", "確認要刪除這筆紀錄嗎?");
            }
        }