我有一个嵌套元素,它有一个这样的模板:
<template>
<span>Short text</span>
<template is="dom-if" if="[[isFullShown]]">[[full]]</template>
</template>
IronResizableBehavior
只要notifyResize
更改,我就会isFullShown
明确调用IronResizableBehavior
。
这嵌套在另一个元素中,该元素也有<template>
<nested-element isFullShown="true" full="Full text"></nested-element
</template>
<iron-list>
<template>
<my-element></my-element>
</template>
</iron-list>
反过来嵌套在我的铁列表中
notifyResize
当我开火时,我会显示隐藏文字并致电translate3D
,如果我正在查看检查,我希望看到列表中所有项目的SELECT A.*
FROM YOURTABLE A
INNER JOIN (SELECT BOT_ID, MAX(LASTMODIFIED) AS LAST_ACTIVITY
FROM YOURTABLE
GROUP BY BOT_ID) B ON A.BOT_ID=B.BOT_ID AND A.LASTMODIFIED = B.LAST_ACTIVITY
属性更改表示由于项目大小的变化而进行重新布局......但我不知道。
我做错了什么?