Could (B4XTable / Flexible Table) have an optional fixed row for summaries in the future?
To achieve what is shown in the images, it was necessary to extend B4XTable with an event. The displayed application uses two tables, one for the data and one for the totals, synchronized with
clvData_ScrollChanged.
To achieve what is shown in the images, it was necessary to extend B4XTable with an event. The displayed application uses two tables, one for the data and one for the totals, synchronized with
clvData_ScrollChanged.
B4X:
Private Sub clvData_ScrollChanged (Offset As Int)
If xui.SubExists(mCallBack, mEventName & "_ScrollChanged", 1) Then
CallSub2(mCallBack, mEventName & "_ScrollChanged", Offset)
End If
End Sub