HiI am using Hierarchical grid for displaying data. In the Inner grid, while adding or editing large content in any column I am not able to select all the contents at a time inside the column. For example while adding the contents if I have to delet some part it needs to be done by Backspace or Delet button one character at a time. I am not able to use "Ctrl + A" or mouse selection or "Shift + Home" for selection of data.Please Note : The selection works fine in outer grid.Any suggestions are welcome.
Hello ,
Thank you for posting in the Infragistics community !
I was not able to reproduce this behavior with 14.1 and 14.2 volumes. It was working fine as I tried "Ctrl + A" and "Shift + Home" combinations. Please feel free to provide your sample that faces this issue for investigation.
Looking forward to hearing from you.
Hi,Thanks for the reply.
Part of code for Inner and outer grid is as mentioned below.
Inner Grid :
features: [{
name: "GroupBy",
type: "local",
},
{
name: "Paging",
pageSize: 5
name: "Sorting",
type: "local"
name: "Filtering",
name: "Tooltips",
visibility: "always"
name: "RowSelectors"
]
Outer Grid:features: [
groupByAreaVisibility: "top",
labelDragHelperOpacity: 0.2,
emptyGroupByAreaContent: "Drag here columns to group by"
}, {
pageSize: 25
name: "Selection"
Please note: I did some analysis on this and I think the issue is related to feature "name: Selection". In the above code feature "name:selection" is present for outer grid but not for inner grid. So i tried adding the same in inner grid as well but it did not worked.Then I removd the "name:Selection" from the outer grid and added the same in inner grid then I was able to select all with "Cntr + A" but unfortunately it affected the row editing of Inner Grid and I was not able to edit the inner grid.So I think the issue is related to "name: selection" feature as its not considering the it both in Inner and outer grids.Any suggetion will be helpful. Thanks