From b0e83cec000f15f2ebd5f165f462993a01e2bcde Mon Sep 17 00:00:00 2001 From: anoshenko Date: Mon, 22 Nov 2021 15:20:53 +0300 Subject: [PATCH] ListView bug fixing --- listView.go | 1 + 1 file changed, 1 insertion(+) diff --git a/listView.go b/listView.go index 4353526..2052e1a 100644 --- a/listView.go +++ b/listView.go @@ -914,6 +914,7 @@ func (listView *listViewData) updateCheckboxItem(index int, checked bool) { } func (listView *listViewData) htmlProperties(self View, buffer *strings.Builder) { + listView.viewData.htmlProperties(self, buffer) buffer.WriteString(`onfocus="listViewFocusEvent(this, event)" onblur="listViewBlurEvent(this, event)"`) buffer.WriteString(` onkeydown="listViewKeyDownEvent(this, event)" data-focusitemstyle="`) buffer.WriteString(listView.currentStyle())