Hello kane81,
To stop cell highlighting you can use cellStyle property where you can return the name of a css class which will be applyed to cells:
cellStyle={(row, col) => "cellStyle"}
And then you can override the build-in class with a class of greater specificity:
<style>
:global(.demo .wx-grid .wx-cell.cellStyle:focus) {
outline: none;
}
</style>
Also if you want to stop opening the inline editor while opening the external editor you can return false
when intercepting open-editor action.
Please check the example: https://stackblitz.com/edit/sveltejs-kit-template-default-2ssxt7qi?file=src%2Froutes%2FMyGrid.svelte
To implement stripped colored rows you can also use rowStyle property.