Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have a C# Silverlight project where I've got a DataGrid. There's one column that is editable, named quantityColumn. When I run my project, the column is editable, but it won't tell me what I'm typing in until I press the Enter key. I suspect it's due to my BeginningEdit method, as there's another column that when clicked generates a child window.

Here's my 'BeginningEdit' method:

    private void dataGridPurchaseOrderLines_BeginningEdit(object sender, DataGridBeginningEditEventArgs e)
    {
        if (dataGridPurchaseOrderLines.SelectedItem != null)
        {

            if (dataGridPurchaseOrderLines.CurrentColumn.GetValue(NameProperty).ToString() == "unitCostColumn")
            {
                PurchaseOrderLine poLine = (PurchaseOrderLine)dataGridPurchaseOrderLines.SelectedItem;
                ItemLookup selectedItem = Globals.lookupEntitiesContext.ItemLookups.FirstOrDefault(p => p.ID == poLine.ItemID);
                UnitOfMeasureLookup UOM = Globals.lookupEntitiesContext.UnitOfMeasureLookups.FirstOrDefault(p => p.ID == poLine.UnitOfMeasureID);
                UnitCostChild unitCostChild = new UnitCostChild(selectedItem.Code, selectedItem.Name, poLine.UnitOfMeasureID, (poLine.UnitCostFactor == null ? 0.0M : (decimal)poLine.UnitCostFactor) * (decimal)poLine.UnitCost);
                unitCostChild.Show();
                unitCostChild.Closed += (s, ea) =>
                    {
                        if (unitCostChild.DialogResult == true)
                        {
                            poLine.UnitCostFactor = ((UnitOfMeasureLookup)unitCostChild.comboBoxUOM.SelectedItem).BaseUnitQuantity;
                            poLine.UnitCost = Convert.ToDecimal(unitCostChild.textBoxUnitCost.Text.Replace(",", "")) / (decimal)(poLine.UnitCostFactor == null ? 1 : poLine.UnitCostFactor);
                            poLine.UnitOfMeasureID = ((UnitOfMeasureLookup)unitCostChild.comboBoxUOM.SelectedItem).ID;
                            poLine.ExtendedCost = (decimal)poLine.Quantity * poLine.UnitCost;
                            if (System.Globalization.CultureInfo.CurrentCulture.Name == "en-GB")
                            {
                                _purchasingContext.PurchaseOrderLines.FirstOrDefault(p => p.ID == poLine.ID).Tax = _purchasingContext.PurchaseOrderLines.FirstOrDefault(p => p.ID == poLine.ID).ExtendedCost * Convert.ToDecimal(Globals.lookupEntitiesContext.BusinessRuleTypeLookups.FirstOrDefault(p => p.Code == "VATTax").BusinessRuleValue);
                            }
                            dataGridPurchaseOrderLines.DataContext = null;
                            dataGridPurchaseOrderLines.DataContext = _purchasingContext.PurchaseOrderLines;
                            LoadTotalGrid();
                        }
                    };
            }
        }
    }

I've tried manually declaring a Cursor, changing the style of the DataGrid to set IsHitTestVisible to True, and even creating a PreparingCellForEdit method that changes the Quantity column into a TextBox explicitly and manually enabling it and setting IsReadOnly to false, and none of that has worked. Any ideas?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.