or
Hello,
the new project upgrade utitlity is a great improvement from the last version, but there is a small issue.
When i upgrade a project and i had set the local copy property to true for the telerik dlls then after the upgrade the local copy property is set to false for all telerik.dlls
Kind Regards,
Ramius
to telerik :
pleaze present this possible ...
thanks beforehand.
| private void gridAddress_RowValidated(object sender, Telerik.WinControls.UI.RowValidatedEventArgs e) |
| { |
| if (e.Row is Telerik.WinControls.UI.GridViewNewRowInfo) |
| { |
| Telerik.WinControls.UI.GridViewDataRowInfo newRowInfo = (Telerik.WinControls.UI.GridViewDataRowInfo)((Telerik.WinControls.UI.GridViewNewRowInfo)e.Row).DataRowInfo; |
| //... |
| if (newRowInfo != null) |
| { |
| CustomerAddress add = new CustomerAddress(); |
| add.CustomerID = currentitem.CustomerID; |
| add.Addresstype = AddressTypes.AddressTypesByID(Convert.ToInt32(newRowInfo.Cells["AddressType"].Value)); |
| add.Address1 = newRowInfo.Cells["Address1"].Value.ToString(); |
| add.Address2 = newRowInfo.Cells["Address2"].Value.ToString(); |
| add.Suburb = newRowInfo.Cells["Suburb"].Value.ToString(); |
| add.City = newRowInfo.Cells["City"].Value.ToString(); |
| add.Zipcode = newRowInfo.Cells["ZipCode"].Value.ToString(); |
| //if (newRowInfo.Cells["IsPrimary"].Value.Equals(true)) |
| //{ |
| // add.IsPrimary = Convert.ToBoolean( newRowInfo.Cells["IsPrimary"].Value.ToString() ); |
| //} |
| //else |
| //{ |
| // add.IsPrimary = false; |
| //} |
| add.IsPrimary = Convert.ToBoolean(newRowInfo.Cells["IsPrimary"].Value.ToString()); |
| currentitem.CustomerAddress.Add(add); |
| } |
| } |
| } |