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
1
vote
1 answer

How to change width of Tooltip in Infragistics ig grid

On the offical docs for Infragistics ig grid, there is nothing mentioned about changing of width. I have tried: tooltipShowing: function (evt, args) { $('#myGrid_tooltips').width(500); // no luck $('#myGrid_tooltips').addClass('width-500') //…
Kamran
  • 4,010
  • 14
  • 60
  • 112
1
vote
1 answer

Is there a way to exclude specific columns from post data while sending to the controller using iggrid saveChanges event?

Is there any way that I can exclude specific columns from posting to the controller after "saveChanges" event called in the igGrid? Example: $("#{{gridName}}").igGrid({ autoGenerateColumns: false, primaryKey: "id", …
Kiran
  • 1,177
  • 4
  • 18
  • 35
1
vote
2 answers

How to use HTTP POST request in ASP.NET MVC igGrid wrapper?

It seems quite simple to use HTTP POST method in igGrid using ajax post call by specifying requestType attribute. But, I am not able to find any method to specify the requestType in ASP.NET MVC wrapper for igGrid ( Infragistics 16.2…
1
vote
0 answers

How to get the page model along with grid transactions (iggrid) to server in ASP.NETMVC

I am working on ASP.NETMVC and iggrid (Infragistics). Is there any way I can pass the page model along with grid transactions to server (controller from view)? Thanks in advance.
Dayana
  • 21
  • 4
1
vote
1 answer

Ignite UI data grid rebind not working using RAZOR MVC5

I am using ignite ui v18.1 (latest version) MVC5 Razor ASP.NET. On combo selection changed I want to filter data and rebind the data grid. Loading.gif continuous to appear on data re-bind and no data gets loaded in grid. Below code logic: on combo…
satish ganai
  • 107
  • 1
  • 9
1
vote
1 answer

Infragistics - show/hide columns in code (not using default column chooser dialog)

I have implemented custom column chooser dialog. When user submit changes I have two arrays: keysOfColumnsToShow (example: ['key1', 'key2', ...]) keysOfColumnsToHide (example: ['key3', 'key4', ...]) I have debugged and keys are fine. Now I try to…
SigGP
  • 716
  • 1
  • 11
  • 24
1
vote
1 answer

IgGrid updating feature EditMode 'row' and 'cell' (tab-lost focus and validations)

I am working with IgGrid jquery based and I am trying to set up the grid as per following: function igGridBind() { $("#JournalGrid").igGrid({ dataSourceType: 'json', dataSource: journals, primaryKey: "journal_id", …
Exec21
  • 797
  • 3
  • 7
  • 23
1
vote
1 answer

Object doesn't support property or method 'igGrid' occurred

I get an error when trying to render an Infragistics grid and I cannot find the cause of this, googled it, searched forums etc… Unhandled exception at line 1423, column 16 in eval code ‘0x800a01b6 - JavaScript runtime error: Object doesn't support…
1
vote
0 answers

Timer input field in IgGrid (feature:Updating ) editor

How can i get an Timer Validated Input field for each row ? datepicker/timer seems to be only a date picker and not a timer... is there a way to manipulate the input fields by Jquery? my table Columns $scope.schedulerColumns = [{ …
Amsel
  • 107
  • 1
  • 13
1
vote
1 answer

How to integrate IgniteUI igGrid (Infragistics) with AngularJS and export to Excel

I am new to AngularJS and IgniteUI. So far, I could not find any good example to integrate infragistics IgniteUI with AngularJS. The samples I have found does not work. Based on the sample I have integrated the following files
Alomoni
  • 103
  • 1
  • 9
1
vote
1 answer

How to implement remote paging for iggrid with custom API

I'm trying to integrate iggrid from Ignite UI to my SPA Angular 4 application. I have custom API and I want to implement remote paging. My API has different names of parameters and returns items in content and total number in headers. I also need to…
JanSkalicky
  • 1,007
  • 1
  • 6
  • 10
1
vote
1 answer

Iggrid startEdit not working

I have table defined with HTML-helper in my MVC-project: @(Html.Infragistics().Grid(Model.SapCrossRefs).ID("GridSapCrossRefs") .Width("100%") .AutoGenerateColumns(false) .AutoGenerateLayouts(false) …
Reci
  • 85
  • 9
1
vote
1 answer

jQuery.ui is undefined when I try to use IgGrid with Webpack

I try to use IgGrid Ignite UI with Webpack but i have the flowing error : TypeError: jQuery.ui is undefined Despite i have the jquery and jquery_ui in my package.json I found a solution to build jquery thanks to: new webpack.ProvidePlugin({ …
Anouar Mokhtari
  • 2,084
  • 4
  • 23
  • 23
1
vote
1 answer

How to create a reusable ig-grid

I've searched for an example but have not been able to find one. My goal is to reuse the CreateGrid method by passing in different variables. My problem is that I am not able to dynamically set the columns in the grid. I cannot figure out how to…
1
vote
1 answer

Custom component not loading in ig-grid column template

I'm trying to use custom made component in ig-grid column template. Component is rendered correctly in Html, but it never reaches component's constructor. How is it possible to use custom component in column template?