Skip to content

Replies

0
Singh
Singh answered on Feb 7, 2018 3:30 PM

Hi Vasil,

I have checked what you suggested but currentTradeIdFileTypeId always has the correct value. It is set somewhere above in the code. Can you please suggest something else?

Regards

Singh

0
Singh
Singh answered on Feb 5, 2018 11:15 AM

Hi,

Can anyone please reply to this?

Regards

Singh

0
Singh
Singh answered on Feb 5, 2018 11:15 AM

Hi,

Can anyone please reply to this?

Regards

Singh

0
Singh
Singh answered on Jan 29, 2018 4:07 PM

hi,

I tried the above but I get the following error:

"Editing the specified row or column is currently not possible. It should be in view on the current page and virtualization frame.

My code is as below:

$(document).delegate("#igGrid", "iggriddatarendered", function (evt, ui) {

 if (expandAll === true) {

var parentGrid = $("#igGrid").igHierarchicalGrid("rootWidget");

var domElement = parentGrid.rowById(rowID);

if (domElement != null) {

$("#igGrid").igHierarchicalGrid("expand", domElement, function () {

//updating the first row of the first child table

var children = $("#igGrid").igHierarchicalGrid("allChildren");

children.eq(0).igGridUpdating("startEdit", currentTradeIdFileTypeId);

});

}

   }

});

0
Singh
Singh answered on Jan 3, 2018 8:07 PM

In addition to the above issue:

My grids are load on demand. As per the requirements, when I refresh the grid I need to append a custom text to one of the cells in the column.

It refreshes the grid with the custom value, now if the user clicks the row manually to make it editable ( because I am not able to make it editable dynamically), the Done button remains disabled unless a value is changed in the that row. I want Done button to be enabled so that it can go into save changes.

Regards

Singh