This 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.
Fix
In configwizard.js replace
CommandsGrid.attachEvent("onRowSelect",FillInCommand);
with
CommandsGrid.attachEvent("onRowSelect",function (rowId) {
FillInCommand(CommandsGrid.getRowIndex(rowId));
});
CommandsGrid.attachEvent("onDrop", ExtractCommandsValues);
Please report if this change breaks anything.
This post has been edited by Francesco: 18 May 2012 - 07:31 PM



Help

Back to top









