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
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now