🎨 The database rollup field supports using the template field https://github.com/siyuan-note/siyuan/issues/12384

This commit is contained in:
Daniel 2025-08-06 11:15:00 +08:00
parent f6694810e2
commit d67a041633
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 22 additions and 6 deletions

View file

@ -158,6 +158,15 @@ func (table *Table) GetField(id string) (ret Field, fieldIndex int) {
return nil, -1
}
func (table *Table) GetValue(itemID, keyID string) (ret *Value) {
for _, row := range table.Rows {
if row.ID == itemID {
return row.GetValue(keyID)
}
}
return nil
}
func (*Table) GetType() LayoutType {
return LayoutTypeTable
}