DataviewJS for interactive Dataview

Hi.

I have the following simple Dataview code:

Blockquote

TABLE file.folder, finished
WHERE contains(field_1,"#a")
     OR contains(field2,"#b")
     
LIMIT 20

I would like to make interactive this code having Dataview to use it’s input from 4 INLINEFIELDS:

INLINEFIELD_1:: name_1 INLINEFIELD_2:: content_1
INLINEFIELD_3:: name_2 INLINEFIELD_4:: content_2

Blockquote

TABLE file.folder, finished
WHERE contains(name_1,content_1)
     OR contains(name_2,content_2)
LIMIT 20

Then, when I select the contents of the INLINEFIELDS:
INLINEFIELD_1:: name_1 INLINEFIELD_2:: content_1
INLINEFIELD_3:: name_2 INLINEFIELD_4:: content_2

Dataview use the new contents and displays the new data.

Is there a way to do it ?

After googling a lot I found a solution.
I explain it here below if someone is interested:

I have these Inline fields:

Inlinefield:: Tag_internal_catalogo_scn
Tag_internal_catalogo_scn:: #illusione
Valuefield:: #illusione

I can check the content of them with the code below:

TABLE file.folder, Serie, this.Inlinefield, this.Valuefield

FROM #note

WHERE contains(row[this.Inlinefield],string([this.Valuefield]))

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.