Francesco Posted May 19, 2012 Posted May 19, 2012 (edited) CauseThis is caused by two different issues:The function that populates the command textbox searches the array trough Id even though when drag&dropping the Id stop reflecting the current grid position.When you drag&drop an item the commands array is not updated so fixing the function for populating the textbox is not enough, the array has to be refreshed after each drag&drop as well.FixIn configwizard.js replaceCommandsGrid.attachEvent("onRowSelect",FillInCommand);with CommandsGrid.attachEvent("onRowSelect",function (rowId) { FillInCommand(CommandsGrid.getRowIndex(rowId)); }); CommandsGrid.attachEvent("onDrop", ExtractCommandsValues);Please report if this change breaks anything. Edited May 19, 2012 by Francesco
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now