todo-comment for a problem to solve
diff --git a/tobago-theme/tobago-theme-standard/src/main/npm/ts/tobago-command.ts b/tobago-theme/tobago-theme-standard/src/main/npm/ts/tobago-command.ts
index 59e3142..a1daddb 100644
--- a/tobago-theme/tobago-theme-standard/src/main/npm/ts/tobago-command.ts
+++ b/tobago-theme/tobago-theme-standard/src/main/npm/ts/tobago-command.ts
@@ -187,6 +187,21 @@
       return this.parentElement;
     }
   }
+
+  /* XXX todo:
+    get element(): HTMLElement {
+      let e = this.parentElement;
+      // XXX special case, using the row, but <tobago-behavior> can't be a child of <tr>
+      while (e.matches("td.tobago-sheet-cell-markup-filler")
+      // XXX fix position of <tobago-behavior> inside of input-group
+      || e.matches(".input-group")
+      || e.matches(".tobago-input-group-outer")) {
+        e = e.parentElement;
+      }
+      return e;
+    }
+  */
+
 }
 
 document.addEventListener("DOMContentLoaded", function (event: Event): void {