Browse By Tags

  • xamDataGrid: How do update databinding value while typing

    Hello,

    how can I immediately update the bound value of a field? When I typ in a letter, I want to see change in the bound value, instead of having to lose the focus.

  • XamDataGrid Edit Values

    I am evaluating XamDataGrid for UWP. 

    The text data in the cells appears to be read-only. 

    Will it be possible to edit data in the cells?

  • Text below visible area of Cell when editing

    I have following Problem when using a XamDataGrid bound to an ObservableCollection.

    When i use a regular TextField to Display Data, the Text seems to be moved below the visible area while editing. The Text itself is correct and is being transfered to…

  • Retrieve Modified Records/Objects from XamDataGrid with MVVM Pattern

    I have a XamDataGrid bound to an ObservableCollection in my ViewModel:

    public ObservableCollection<InventurPos> LoadedPositions { get; set; }

    XAML:

    <custom:XamDataGrid Name="InvPosDisplay" Grid.Row="2" Grid.Column="2" DataSource="{Binding LoadedPositions…

  • want to trigger a edit mode by clicking the button in the grid

    Question 1:

    For the grid, I have a delete button in the xamdatagrid for each row.

    After click the delete button, a map table record would be removed. But the record in the grid wont, just change the status of mapping after refresh.

    In edit mode, after…

  • Added Row Editable, Rest of Rows Non-Editable

    Trying to get the behavior where the added row is editable but the rest of the rows in the grid are non-editable. Is there a way to do this?

    Thanks

    JD

  • How do I edit a cell in the datagrid without overwriting the current content, but appending to it.

    How do I edit a cell in the datagrid without overwriting the current content? Ideally, when I go to the edit mode, the existing content in a cell become read-only, and the newly added content will append to the existing content in a new line.

  • How to

    How do I edit a cell in the datagrid without overwriting the current content? Ideally, when I go to the edit mode, the existing content in a cell become read-only, and the newly added content will append to the existing content in a new line.

  • Displaying and Editing of Hyperlinks in cells

    We are using the igDP:Field to display the hyperlink with a custom style.

    Is there any way to make use of both double click and single click events for the same cell?

    We added our own dependency property command which will handle both. But the igDP…

  • Custom CellValueEditor and Custom Control when edit starts

    I am trying to create a custom ValueEditor called DoubleValueEditor, and then have a control associated with that type.

    The control that will appear when editing starts is a button that fills the cell with the text "Double {CellValue}".

    When…

  • XamDataGrid doesn't update when i click a checkbox until i leave that cell

    I have SEVERAL XamDataGrids in my application, and I want all of them to enable the respective Save buttons as soon as the user changes a checkbox in them.  This currently doesn't happen until I leave the cell or press enter etc, because the cell is still…

  • Dynamic Programming Vs IEditableObject In XamDataGrid

    hi when i use the default and simple way to provide the xamgrid (fields and rows) the IEditableObject methods get called normally but when i use the dynamic approach it doesn't call the methods. i have attached a sample project to demonstrate the issue…
  • xamdatagrid within combo box issues

    Hello IG Support Team,

    We have received a sample application from IG Support team to show XamdataGrid within xamComboEditor. It is working well so far except few usability issues.

    One of the major issue is that when you select the row and press enter…

  • XamDataGrid Manually format hierarchical data and activate edit on some fields

    As shown in the subject, I have a XamDatagrid with an object collection as a datasource.

    I would like to Show on the grid only some fields and I also want to allow the user to modify some of the fields.

    I come from WIndows Forms where the Initialize…

  • Bind DiplayText and EditorValue to different properties

    Hi All,

    I have xamDataGrid. DataSource binds to collection of some objects. Each object contains two properties

    1. Count of type double

    2. CountString of type string.

    For example Count set to 5.0 and CountString set to "five".

    I need to…

  • XamDataGrid within XamComboEditor - pressing enter selects entire row

    • Pressing Enter selects the entire row. Please follow the steps to reproduce the issue. Please find attached sample project that we have received from Infragistics to host xamdatagrid within xamComboEditor 

    (1)    Click on any Editable field.

    (2)    It…

  • Suppress update ValueEditor's value in edit mode

    Hi Infragistics Team, I have xamDataGrid which binds to Persons. The source Persons can be frequently updated. I need to suppress update value of ValueEditor when cell is in edit mode(user should have possibility enter and apply value). Do you know…
  • DataGrid automatically ends editmode

    Hello.

     

    I have an issue when using the xamDataGrid. The grid is configured to enable adding of records, and the addrecord shows at the top. So far so good. But when entering edit mode by clicking on a cell, it automatically ends edit mode when I try…

  • Excel exporter on combo editor columns

    I have a very simple xamDataGrid which has a combo editor column. The editing functionality works and looks fine. However when I try to export the grid to Excel using the Excel Exporter, I see the Id values that represent the text instead of the Text…

  • Disable Items in ComboboxEditor in datagrid

    Hi,

    i found in a post that items in a combobox of a bound xamdatagrid can be excluded from selection by disabling them.

    http://www.infragistics.com/community/forums/p/44745/243407.aspx#243407

    But I can't get this running.

    I have set

     <!-- 
  • Focus issue with custom EditTemplate

    Hello,

    i'm experiencing some issues with custom EditTemplate in the XamDataGrid:

    my render template is set to a simple TextBlock, and my edit template to a TextBox. The problem is that when I click on a cell (or tab to navigate between cells) I…

  • XAamDataGrid row Edit enable/disable without using events in code behind

    Hi,

     I am using Xamdatagrid v 10.1..I am also using MVVM which doesnot allow me to write code in the code behind (.cs) file. The grid when it loads needs to readonly ie, not editable. Later when we add a new row to the grid , it has to be made editable…

  • XamDataGrid Record Updating and Record updated event are getting executed

    Hi,
    I’m using xamdatagrid, in which, when I select other part of grid except any row,column, Record Updating event is getting fired.
    Due to that my application is getting crashed.
    Is there any way that, if I click other part of grid except any…
  • How to invoke an editor based on underlying object type?

    I am working on customizing xamDataGrid to edit categorized collection of name-value pairs, which should look like property grid. How do I configure xaml to invoke custom editor based on object type in the cell?

    Thanks.

  • XamDataGrid - Check box issue

    Hi,

         In a grid, in one particular field we have checkboxes. The records in the grid have parent child relationship. If you check the parent checkbox, its corresponding child checkboxes should be automatically checked. We have done this in EditModeEnded…