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
665
DropdownProvider ItemsRequested event - Auto adding row to grid
posted

Hello,

I have a column on the grid which can load cascading. When fire to Itemsrequested event and click "Save" button, I received one row is nothing and one row have full columns but don't have data in them. This affect to some my functions. How to solve this issue?

This is my client function I have used to fire to ItemsRequested event.

function myWDG_EnteredEditMode(sender, eventArgs) {
var cell = eventArgs._cell;
var row = cell.get_row();
var value = row.get_cellByColumnKey("uEntity_ID").get_value();
if (cell.get_column().get_key() == "Entity_Multiple_Address_ID") {
_Payment_Entity_Multiple_Address_DropDownProvider.loadItems(value);
}
}

I using NetAdvantage version 14.1.20141.2011.

Regards,

Manh

Parents Reply Children
No Data