예제 #1
0
파일: frmGroupBy.cs 프로젝트: mwilian/demos
		private void grdGroupList_CurrentCellChanging(object sender, Janus.Windows.GridEX.CurrentCellChangingEventArgs e)
		{
			if (! ValidateGroup(this.SelectedGroup))
			{
				e.Cancel = true;
			}
		}
예제 #2
0
 private void jsgConditions_CurrentCellChanging(object sender, Janus.Windows.GridEX.CurrentCellChangingEventArgs e)
 {
     if (e.Row != null)
     {
         if (this.jsgConditions.Row >= 0 && (e.Row.Position != this.jsgConditions.Row))
         {
             if (!this.GetConditionValues())
             {
                 e.Cancel = true;
             }
         }
     }
 }