Questions tagged [iggrid]

igGrid is a feature rich jQuery/HTML5 grid component provided by Infragistics in their Ignite UI toolbox.

igGrid and igHierarchicalGrid is a JavaScript/HTML5 grid component for web provided by the Ignite UI toolkit. It is a server agnostic jQuery based grid. Some of it's features include:

  • Paging
  • Outlook group by
  • Filtering
  • Updating
  • Sorting
  • Column summaries
  • Virtualization
  • Selection
  • Row selectors
  • Multi-column headers
  • Cell merging
  • Column moving
  • Column hiding
  • Column resizing
  • Checkbox column
  • Unbound columns
  • Tooltips
  • RESTful (WebAPI) support
  • Full touch environment support
115 questions
4
votes
1 answer

Update newly created record on client after successfully processing the Create request on server

Please, consider following scenario: IgniteUI 16.1 igGrid powered with igGridUpdating feature and RESTDataSource User creates a new record through modal dialog Post request is initiated with form data Server processes the create request and returns…
A.Kostadinov
  • 383
  • 1
  • 6
  • 18
4
votes
1 answer

IgGrid: How to get the odata queryString of remote filtering in JavaScript

I use infragistics grid (v16.1) with remote filtering. When I filter column "Name" I see that the grid makes GET request in the following…
bibibi
  • 43
  • 4
4
votes
2 answers

Infragistics MVC Helper Custom Column

I'm currently using the ASP.NET MVC helpers in MVC4, with the Infragistics igGrid control, and am looking for a way to insert a custom column in order to implement AJAX calls for CRUD functionality. The only solutions that I've found involve…
3
votes
1 answer

IgGrid - How to execute multiple grouping in code?

In my project I have to create my own multiple sorting and multiple grouping dialogs. Basically user can choose which columns should be included, select order and direction of operation. For multiple sorting I use this function and it works …
SigGP
  • 716
  • 1
  • 11
  • 24
3
votes
1 answer

Infragistics igGrid + jQuery UI Drag & Drop

I have an igGrid from Infragistics using IgniteUI version 16.2. I'm trying to make the rows draggable using the "draggable" library from jQuery UI version 1.11.4 (combined with jQuery version 1.11.3). My "droppable" target is a div outside of the…
3
votes
1 answer

Update infragistics igGrid with composite primaryKeys in jQuery

I am using Infragistics igGrid where I have multiple primary keys: $("#grid_selector").igGrid({ autoCommit: true, width: "100%", height: '500px', autoGenerateColumns: false, primaryKey:…
sarojanand
  • 607
  • 1
  • 11
  • 30
3
votes
1 answer

Infragistics filtering numbers using igTextEditor

I want to filter a column which is actually contains numbers but the numbers are displayed with this format 2MM, 1K, etc. When the user wants to filter the data in that column I would prefer to give him the option to search using the displayed…
anna
  • 745
  • 2
  • 9
  • 30
3
votes
3 answers

infragistics igGrid: how to remove a row with javascript

i think my question is pretty simple but i still didn't find any answer that fits me, neither here nor out there.. so i'd be really happy if someone could help me out, it doesn't matter if it's by providing useful links or whatever... what i'm…
user5967971
3
votes
1 answer

Loading an image into igGrid column based on ImageKey in Odata Controller

I have this Model i have set up: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; namespace aSa.Web.Scheduling.Models { public class Trailer { [Key] …
juleekwin
  • 521
  • 1
  • 9
  • 25
3
votes
1 answer

show buttons on iggrid based on conditions for each row

I am showing an igGrid on my view which have edit and delete enabled on each row. I want to show the buttons for Edit and Delete based on records. Based on column data, some row will have both Edit and Delete button while others can have only Edit…
sarojanand
  • 607
  • 1
  • 11
  • 30
3
votes
3 answers

right align dynamic column of datatype number in iggrid

I am using Ignite UI grid. The columns is dynamically build from the database like this:- $.post('/Main/GetColumns',function(data){ $("#mygrid").igGrid({ columns: data, width: "100%", …
abc123
  • 262
  • 4
  • 27
3
votes
1 answer

How to re-bind the data in the igGrid igniteUI control on click of a button?

I am using Infragistics(Ignite UI) controls in my ASP.NET MVC3 application. I have grid which I've bound to 'Customer' data. Works fine. Now I have button. On clicking I make an ajax call. In the controller I write query which selects only a part of…
Dixit Gokhale
  • 601
  • 1
  • 12
  • 32
3
votes
2 answers

Infragistics hidden column update

I'm using Infragistics on an Entity Framework code-first MVC project. I want to display a table with a hidden column (the ID) and it has to be editable. Here is what I've got so far:
Titouan D.
  • 476
  • 6
  • 16
3
votes
1 answer

Infragistics grid's GET returning empty response

I'm trying to use Infragistics' grid to display a list of items from my Database. I'm using code-first method with Entity Framework in an MVC application with Razor engine. Every thing is working fine in the view except the Infragistics grid. Here…
Titouan D.
  • 476
  • 6
  • 16
3
votes
2 answers

Infragistics Jquery Grid primary key

I am trying to do a row selection on my grid but am struggling on either setting or getting the datakey values as I can not find any documentation out there on it. $("#divGrid").igGrid({ columns: [ { headerText:…
Boone
  • 1,046
  • 1
  • 12
  • 30
1
2 3 4 5 6 7 8