What I’m trying to do
I’m trying to make my own dashboard.
Things I have tried
so, I used “dataview” and “multi-column markdown” plugins.
it works but dataview is permanently Loading… state.
below is my query.
Text displayed above.
number of columns: 2
largest column: left
Things near deadline
TABLE
business as "Business name",
company as "Contract Company",
deadline as "Deadline"
FROM "work card detailed"
where business="logipasta"
and
(
deadline <= date(now)
or
deadline = ""
)
— end-column —
Text displayed in column 2.
— end-multi-column
Text displayed below.
at each plugin, working well both.
In a large vault, Dataview can take a long time to display results. Does it work outside the columns?
I have the same issue. Simple dataview query will not load in multi-column. Suggestions?
This one works like a charm for me. Are you sure the Dataview query works outside the columns? Note that there is a table in the first column, a tracker in the second and three tables in the third:
````col-md
flexGrow=6
===
```dataview
TABLE ...
````
````col-md
flexGrow=2
===
```tracker
searchType: ...
```
````
````col-md
flexGrow=1
===
Table 1
```dataview
TABLE ...
```
Table 2
```dataview
TABLE ...
```
Table 3
```dataview
TABLE ...
```
````