Browse By Tags

  • XamDataGrid DataRecordCellArea Issue

    I have the following style for DataRecordCellArea and CellValuePresenter. I'm still getting the default style to show as double.

    When clicking to the right of the radio button of Line "A", it  becomes Active. Clicking on the radio button of Line…

  • Prevent autoscrolling in XamDataGrid

    When an item is clicked the scrollbar automatically scrolls so that the item is to the left. I have learned that this is the designed behavior, but is there really no way around it? I tried to set the RequestBringIntoView as handled without success.

  • Disable the default record selection in XAMDATAGRID

    Hi All,

    I am using XamDataGrid in my application.

    when i bind it by default it selects the first record of collection in data grid.

    i need to stop default binding.

    There should be no row which is selected by default at the time of loading.

    I tried with…

  • XamDataGrid - Set Focus on a grid row

    I have a requirement to maintain the selection on a grid after refreshing the data.

    For example,

    The grid is loaded and I selected the 3rd row and after that I need to reload the data and after reloading the records the 3rd row (or the previosly selected…

  • XamDataGrid active data item is being automatically reset.

    I'm using XamDataGrid in a MVVM WPF project. I've bound the ActiveDataItem to the CurrentBook property in my ViewModel. Double clicking a record (book) in the XamDataGrid opens another window in which to edit it. The window's data context is the same…

  • XamDataGrid - Get Confirmation From User Before Moving ActiveRecord MVVM

    Hi,

    I am working on XamDataGrid (2012.vol1) where I am validating the row using *SupportDataErrorInfo* property. 

    It is working well as user is getting validation icon errors for the incorrect data, but there is an additional functiona I want to add…

  • XamDataGrid displaying 2 rows where DataSource collection only contains one

    Hi,

    I am using a XamDataGrid (InfragisticsWP4) bound to a collection.  when the page opens, there is only one record in the collection.  this code was used for a couple of months with InfragisticsWPF4.v11.2.dll, version 11.2.20112.1012.

    we just upgraded…

  • XamDataGrid : Select next Cell

    I want to create a button that moves the activecell to the next one.

    I tried using the MoveFocus method, but it does not seem to work.

    How Can I do this ?

  • Cascade XamComboEditors in XamDataGrid

    Hi,

    i am trying to use two dependant xamcomboeditors in xamdatagrid,first combo contains City kist and secod is county list depending on selected city on first combobox,and i use first combobox's selecteditemchange event to set county combo's itemssource…

  • RecordActivated & ActiveDataItem

    Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 …

  • Selecting a child row doesn't update the ActiveDataItem

    I have a hierarchical grid and the ActiveDataItem is binding to a property in my ViewModel. When selecting the parent row it is updated as expected. When selecting a child row however the property in my ViewModel doesn’t get updated.

  • XamDataGrid CollectionViewSource(Currentchanged is not executing when i move between record in the XamDataGrid)

    Hi,

    Code Snippet:

    BindingList<SalesPerson> persons=new  BindingList<SalesPerson>();

    .... code that populates the persons.

    CollcetionViewSource cvs=new CollectionViewSource();

    cvs.Source=persons;

    cvs.View.CurrentChanged += new EventHa…

  • Button Does a Popup. Problem with New Record

    I have a button in my grid that popups up a popup with a user control that allows the user to pick from another datagrid record to associate with that column.  This works fine for editing existing records and also the first time I do a New Record.  The…

  • CellActivated event not fired

    Hi,

     

    I'm using a XamDataGrid for displaying informations and I'm using CellActivated Event to change the display when the user select a row. Everything works fine.

    So I add a new method who can reload User's last choice programmatically (i…

  • Focus the XamDatagrid record (row)

    I have a XamDataGrid in my application and I want to focus the first record of the XamDatagrid on Window load event. I included this line in the code behind file of my window -

    XamGrid1.ActiveRecord = XamGrid1.Records[0];

    This does not focus the…

  • SelectedRecord for XamDataGrid goes to Null when I click another Tab

    I have a number of XamDataGrids displayed within multiple tabs.   Each grid provides summary info, but user can edit individual entries by double-clicking the appropriate row (and the verbose form of the record is loaded into an "edit region").…

  • Multiple record selection on an editable XamDataGrid without RecordSelector

    I've been working on implementing multiple record selection in a XamDataGrid without using the Record Selector, but rather simply by using the standard behaviors of shift-click and ctrl-click. I found that by setting SelectionTypeCell=null, SelectionTypeRecord…

  • Setting XamDataGrid.DataSource every several seconds causes issues

    My application acts like a monitor on a database.
    Every 5 seconds I'm retrieving the data and setting it to the grid.DataSource.

    public void SetDataSource(object dataSource)
    {
        //Before the data changes we save the selected DataId and the scroller ofset…

  • XamDataGrid automatically add new record to bottom?

    In this application, generally the user starts with either a blank slate (for which no grid is present until the 'Add row' button is presssed to add a blank record, which they then fill in), or some amount of data that's either been loaded from a previous…

  • XamDataGrid - RecordActivated

    Hello,

     

    I found RecordActivated/RecordsDeleting events on xamdatagrid gets called multiple times for

    single click also. Is it some kind of error or am I missing something ?

    I have hosted xamdatagrid using element host on windows form and for this…

  • Clear active cells on loss of focus?

    As a preamble, this is probably a simple question and I've overlooked something basic.

    I would like for no cells to remain active or selected when the xamDataGrid looses focus, EG when a control outside of the grid is used.

    I've been trying to do…

  • Problem setting Active Record

    Hello,

     

    I'm having a problem setting the IsActive property on the next DataRecord after a previous record has been deleted. I have a collection of 3 grid row objects that are all viewable in a grid. The grid must display a minimum of 3 rows by default…

  • Selected Row-How to ?

    How can I read all cells from selected ( active) record from xamDataGrid? Not only active cell.

    I fill DataGrid from DataTable, and need to get all cells data from selected row.

    Thanks for reply ...

  • XamDataGrid default row selected

    I have existing infragistics ASP.Net Datagrid code as follows

    if (dgdPlanServicesList.DisplayLayout.Rows.Count > 0)
    {
     dgdPlanServicesList.DisplayLayout.Rows[0].Activate();
     dgdPlanServicesList.DisplayLayout.Rows[0].Selected = true;
    }

    can any one help…

  • How do I bind a texbox to a column in the activerecord?

    How do I bind a texbox to a column in the activerecord?