From bcdbcd2628492e491705b8fbb86fb3b18beb9135 Mon Sep 17 00:00:00 2001 From: Alexei Anoshenko Date: Thu, 18 Aug 2022 12:26:13 +0300 Subject: [PATCH] Bug fixing --- tableView.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tableView.go b/tableView.go index 85b7316..0fabc97 100644 --- a/tableView.go +++ b/tableView.go @@ -618,7 +618,7 @@ func (table *tableViewData) propertyChanged(tag string) { updateProperty(htmlID, "tabindex", "0", session) updateProperty(htmlID, "onfocus", "tableViewFocusEvent(this, event)", session) updateProperty(htmlID, "onblur", "tableViewBlurEvent(this, event)", session) - updateProperty(htmlID, "data-selection", "cell", session) + updateProperty(htmlID, "data-selection", "row", session) updateProperty(htmlID, "data-focusitemstyle", table.currentStyle(), session) updateProperty(htmlID, "data-bluritemstyle", table.currentInactiveStyle(), session)