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
Hello Manh,
Thank you for contacting us!
About the issue I didn't understand the scenario with this save button, could you please isolate a small sample that is reproducing the issue, in order to investigate it further for you. This will be highly appreciated.
Looking forward to hearing from you.
Hello Zdravko Kolev,
Sorry for not replying sooner. I attached small example for you.
This issue seems to come from "AddNewRow" my function. I need add a row to grid after user has changed value of any cells of last row. "AddNewRow" function already place in ExitedEditMode event. When a row has been added, click to "Address" dropdown (fire to ItemsRequested event) and click save button. Although "AddNewRow" only run one time (number of rows on client side is correct) but server side have more than number of rows.
Something is incorrect?
For my scenario, any solution or suggestion?