Browse By Tags

  • Creating a dropdown list for 'filtering' an igGrid column instead of a free-form text field

    I'm looking to setup an igGrid filtering column that acts similar to how a date filtering column works (with a dropdown icon) but with values that are already predetermined.

    Example: A Status column with a filter dropdown that has 'Open', 'Closed…

  • Advanced Filter button not showing in complex objects columns

    Hi,

    I am trying to remote filter and sort columns of a complex object, the problem is the button that show the advanced filter dialog is not showing. The column  is clickable for sorting but the arrows of the direction doesn't show either. The config of…

  • Did bootstrap 5 break filtering?

    I've upgraded to Bootstrap 5 and now the advanced filter icons don't display and no filtering can happen.

    My original code for filtering was:

    features: [ { name: 'Sorting', type: 'local' }, { name: 'Filtering', type: 'local', mode: 'advanced'…

  • Filtering problem in a single row

    All the rows in my iggrid are filtering correctly - except one in the middle. We aren't changing anything in the grid that would affect the filtering as far as I have been able to tell. It isn't position - moving the field, or deleting those around it…

  • How can I filter rows using the AND operator and filter columns using the OR operator?

    Using the following example HERE I would like to filter the grid by:
    (Active === true && (Country === USA || Country === Italy))


    Is this possible?

  • Data Grid - Excel-style Filtering is not working

    Hi Team,

    I have been trying to achieve the similar functionality in my code but using 17.1  version of ignite UI and the combo editor is not showing up in the filter option. Can you please help me out with a sample which works for 

    * Infragistics.Web.ClientUI…

  • Filtering on hidden columns

    I am dynamically adding columns to a grid because I don't know the names of all the columns until runtime.  That worked great until I needed to turn on filtering.

    There will be four preset views that will filter the data rows, showing and hiding rows…

  • Either client/Server side unable to retrieve excel style filter column information

    Hi Team,

    We are using 2015.2 version Infragistics webdatagrid control and applied Excelstylefilter.

    When we checked at server side in DataFiltering event, the eventArg.ColumnFilters  value getting as null

    protected void WebDataGrid1_DataFiltering (object sender…

  • how add extra row to filter result on iggrid?

    Hi,

    wonder if it's possible to filter iggrid on some column value and then when user edits this value on one row, keep this row with original filter result.  Currently when row value on which filter is applied is changed, this row disappears from grid…

  • Implementar paginación remota en Ig Grid con filtros externo al grid.

    Tengo filtros externos en un modal, requiero que la acción de un botón desencadene la paginación remota del grid tomando en cuenta los filtros que el usuario seleccionó.

  • Programmatically Filtering By Date

    When I'm programmatically filtering by a date column, the grid subtracts one day from my filter. So if I want to filter the grid for with Date 12/13/2018 it actually filters by 12/12/2018. Is there a way to stop this from happening without having to add…
  • IgGrid Column with Enum and remote filtering

    Hi,

    How to bind the IgGrid Column with Enum Type. Also need the filter functionality. User should be able to select the Enum value in the Filter dropdown or radio buttons.

    We are creating the Grid with Jquery. Remote filter was used.

    Thanks

  • igGrid ui.igGridFiltering appears broken in 19.1

    I'm getting an error: Uncaught TypeError: Cannot read property 'getEditor' of undefined after defining an igGrid filtering section. 

    Here's my igGrid definition:

           $("#mainScreenGrid").igGrid({
                autoGenerateColumns: false…

  • igGridFiltering reverts to 'Equals' once another filter is cleared

    I have a problem right now where I'm trying to filter by two columns by default, like so:

    function filterGrid() {

    $("#igGrid").igGridFiltering('filter',
    [
    { fieldName: "Status", expr: "Closed", cond: "doesNotContain", logic: 'AND…

  • Hide iggrid features for mobile

    I'm evaluating your grid for use with .NET MVC and I want to know how you recommend hiding grid features for mobile users that won't render well. For example if I want to hide filters on the grid for mobile users how should I go about doing that?…

  • Filter Grid Date Programmatically by Last Week and Last Month

    Hi,

    I need to filter the date column of an Ignite UI Grid programmatically. I've been able to get it working for a single date, but I also need to programmatically filter it by a range, such as Last Week, or Last Month, but I haven't seen an forum posts…

  • IgGrid Filtering: possible to disable the clear value button?

    Is it possible to not render the clear value button as part of the IgGrid filtering feature?

    thanks

  • Add checkbox to filter dialog like excel in igGrid

    This is a request from a customer in Japan.

    He wants igGrid to show checkbox for each filter item in filtering dialog. This is done in WebDataGrid or Excel

  • Server Side Filter

    I was wondering if there is a way in UI Grid for Angular to disable certain features as far as Filtering goes.

    Also is there a way to change the string it sends to remote ? In my case it send something like this

    POST /leads/list?inlinecount=allpages&orderby…

  • Loading indicator for igGrid

    We are using  $("#grid").data("igGrid")._loadingIndicator.show(); to force the loading indicator to show while the data is being retrieved.

    Is there a way to set a timeout on the loading indicator? If it is a large data set we want…

  • How to filter a DateTime filtering column in iggrid without providing time

    Hi Team,

          According to the current functionality, when i filter a DateTime column in the igGrid by giving only date value the current time is automatically taken and the filtering is done.  

    I would like to know if there is any option available to filter…

  • Exception: The grid model doesn't contain a column named:

    Hi,

    I am binding to a data source that is set in the GridDataSourceAction method as below -

    List<Dictionary<string, string>> rows = new List<Dictionary<string, string>>();
                Dictionary<string, string> row = null;            
    
             …

  • Grid DateTime Filter not filtering by time

    I've been trying to filter my data by a date column displayed in "yyyy-MM-dd HH:mm:ss" format, but when I type in the filter, It only filter by Date (“yyyy-MM-dd”) ignoring the Time.

    Time is not in the controller URI and it also…

  • Filtering

    I have a column with text and a small icon beside the text.

    The text is one property in the data object. The URL to the icon is another property in the data object.

    Example object:
    {
    TextProperty: "Some Text",
    ImageProperty: "/images/image.jpg"…