Skip to content

Replies

0
Thibaud Lescuyer
Thibaud Lescuyer answered on May 29, 2015 8:55 PM

Hi Martin,

Actually, I didn't try it because all the problem also occur on windows environment.
Again, if I use the previously attached sample, it doesn't work on IE with the solution we got from you.

We also had other troubles with the grid itself which leaded me to incorporate your previous workaround (with additional fixes) to make it work.

However, as soon as we try to fix something, something else is breaking.
For instance, we now have some grids which are flickering when we reach the end of the vertical scrollbar…

I guess we should start over with a 'simple' usage and see what is wrong to fix it instead of creating workarounds on top of workaround.
I will try to provide you a clean example of the grid in the coming days.

Thanks for coming back to me.
– Arnaud

0
Thibaud Lescuyer
Thibaud Lescuyer answered on May 19, 2015 5:06 PM

Hi Martin,

I checked your solution and I confirm that the scrollbar is no more limited.

However, I am still concerned by the header position that does not match the columns one: it does not look professional.

Furthermore, it appears that we have a very complex workaround for something that looks like a basic feature of the grid.

Would there be any chance that your developers have a look into this issue and release a fix for it?

Regards,

– Arnaud

0
Thibaud Lescuyer
Thibaud Lescuyer answered on May 14, 2015 8:04 PM

Hi,

Just a quick note to inform you that I am now taking care of this account.

We are really looking forward to hear a solution from you as it sounds like the last advice you gave us generated other issues.

– Arnaud

0
Thibaud Lescuyer
Thibaud Lescuyer answered on May 14, 2015 3:06 PM

So…

Can you provide us a solution for both problems which is not breaking one or the other?

0
Thibaud Lescuyer
Thibaud Lescuyer answered on May 13, 2015 7:43 PM

This was a workaround suggested by someone in your support when we could not see a horizontal scroll bar for a fixed height grid. You can view the case history for case – CAS-150367-J5M8K0. the known issue can be found here – http://www.infragistics.com/help/jquery/iggrid_known_issues.html#_Ref367440465

0
Thibaud Lescuyer
Thibaud Lescuyer answered on Mar 24, 2015 4:19 PM

no feedback on this ?? 

0
Thibaud Lescuyer
Thibaud Lescuyer answered on Mar 16, 2015 3:23 PM

This approach works for getting the dataset for selected rows however for us this breaks the multiselect feature with checkboxes. The following represents the block of code handling selection for us

{
    name: "Selection",
    multipleSelection: true,
    activation: true,
    persist: true,

    rowSelectionChanged: function (evt, ui) {

        scope.selectedIds = ui.selectedRows.map(function (val) {
            return val.id;
        });

        var selectedRow = element.igGrid("selectedRow");

        var data = element
            .data("igGrid")
            .dataSource
            .dataView()[selectedRow.index];

        scope.$broadcast("selectionChanged", {
            selectedIds: scope.selectedIds,
            dataObj: data
        });
    }
}

 

As you can probably tell we are using the grid in an angular app. When we do this, we are unable to select multiple rows through checkboxes. However, the CTRL+Click works.