0
私はdhtmlxgridを使用していますが、最初の行はonRowSelect
を使用して選択されませんが、イベントonRowDblClicked
を使用してうまく動作するか、キーボードナビゲーションを使用します。しかし、キーボードの操作を使用して最初の行に移動すると、ナビゲーションが停止し、キーボードを使用して最初の行からナビゲートすることはできませんが、別の行をクリックするとうまく動作します。ここに私のコード:dhtmlxgrid javaのエラー
function onGraphPropGridRowSelect(id)
{
// push the previously selected graph's data to the JSON array object
if(lastSelectedGraphIndex != -1)
{
if(validateGraphProperties())
{
// Note: GraphType is uneditable, so just copy existing value
pushGraphPropertiesToJSONArr(lastSelectedGraphIndex,
graphPropertiesJson[lastSelectedGraphIndex].GraphType);
}else
{
definedGraphGrid.selectRow(definedGraphGrid.getRowIndex(lastSelectedGraphIndex));
return false;
}
}
// now populate the newly selected graph data to the UI elements
populateUIElementsForSelectedGraph(id);
// update the lastSelectedGraphIndex to the newly selected graph index
lastSelectedGraphIndex = id;
if (id==0){
definedGraphGrid.enableKeyboardSupport(true);
alert("first row selected");
}
}