Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1935
igGrid Filter Condition menu does not hide after selection when using Selection feature
posted

Hi i am using Infragistics NetAdvantage jQuery 12.1 or 12.2 - WITH CHROME 

I have igGrid and also igHierarchicalGrid and on both i am experiencing the same exact issue.

I have few tabs and one grid in each of the tabs. when i click on the Filter Condition menu and select any of the conditions, the menu does not hide. - ON CHROME. but on Mozilla Firefox it is working good.

After the Filter Condition Menu does not hide, if i move between tabs the filter condition menu still remains hovering above all of the page although it is a different tab.

When i remove the Selection feature from the features the menu does hide.(igGrid and igHierarchicalGrid)

{
name: "Selection",
mode: "row",
multipleSelection: false
}

here is an example of my grid initialization below. Any Suggestions?

$("#tGrid").igGrid({

width: "100%",
height: "100%",
autoGenerateColumns: false,
primaryKey: "xxx",
columns: [
{ headerText: "xxx", key: "xxx", dataType: "string", width: "100%" }
],
features: [
{
name: "Hiding",
columnSettings: [
{ columnKey: "xxx", allowHiding: false, hidden: false }

]
},
{
name: "Paging",
type: "local",
pageSize: 15
},
{
name: "Sorting"
},
{
name: "Filtering",
type: "local",
allowFiltering: true,
caseSensitive: false
},
{
name: 'Resizing'
},
{
name: 'Tooltips'
},
{
name: "Selection",
mode: "row",
multipleSelection: false
}
]
});