Jump to content

Recommended Posts

Posted (edited)

Cause

This is caused by two different issues:

  1. 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.
  2. 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.

Edited by Francesco

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...