I want to populate all inline checkboxes icon in the vault using dataview like Eleanor Konik

I’m not sure which video you’re referring to, but I’m hoping it’s this one:

And the section on adding icons near the end where she refers to this javascript:
image

This can however be done much nicer today, and it relies on the Minimal theme (or similar CSS) as indicated in the link below:

I’m not quite sure I understand what you’re saying here, but based on the video above, I reckon you want to list checklists using these alternate checkboxes (or task decorations as I like to call them). To do that you could use either of these queries:

List all checkboxes of a given type
```dataview
TASK 
WHERE status="?"
```

Where you can change the "?" to match whatever checkbox type you want.

List all checkboxes for a list of types
```dataview
TASK
WHERE contains(list(["?", "!", "I"]), status)
```

Which lists all checkboxes with question, important or ideas. The list can of course be changed to whatever you like it to report.

It’s also possible to add your own icons to the checkboxes, but that is a somewhat more convoluted process, but I’m going to post that rather soon on the linked post above.