(el: GridItemHTMLElement, name: string)
| 196 | } |
| 197 | |
| 198 | public off(el: GridItemHTMLElement, name: string): DDGridStack { |
| 199 | this._getDDElements(el).forEach(dEl => dEl.off(name)); |
| 200 | return this; |
| 201 | } |
| 202 | |
| 203 | /** @internal returns a list of DD elements, creating them on the fly by default unless option is to destroy or disable */ |
| 204 | protected _getDDElements(els: GridStackElement, opts?: DDOpts): DDElement[] { |
nothing calls this directly
no test coverage detected