在 Flex DataGrid 的每行中显示错误工具提示

发布于 2024-08-16 07:24:10 字数 834 浏览 5 评论 0原文

我在 Flex 3 中有一个简单的 DataGrid:

<mx:DataGrid width="{indexW - 20}" height="100%"
    headerHeight="0" resizableColumns="false"
    dataProvider="{itemsList}"
    itemClick="itemKlik(event)"
    dataTipFunction="displayTooltip">
    <mx:columns>
        <mx:DataGridColumn id="col1" dataField="title" showDataTips="true"/>

        <mx:DataGridColumn id="col2" width="25" textAlign="left" dataField="index" showDataTips="true"/>

    </mx:columns>
</mx:DataGrid>

我正在使用此功能显示工具提示:

private function displayTooltip(item:Object):String{
    var s:String = " ";
    if (item != null){
        s = s + item.title;
    }
    return s;
}

我想要做的是“强制”我的 DataGrid 使用“errorTipRight”选项显示错误工具提示,而不是显示常规工具提示。
有没有一种简单的方法可以实现这一点?

提前致谢!

I have a simple DataGrid in Flex 3:

<mx:DataGrid width="{indexW - 20}" height="100%"
    headerHeight="0" resizableColumns="false"
    dataProvider="{itemsList}"
    itemClick="itemKlik(event)"
    dataTipFunction="displayTooltip">
    <mx:columns>
        <mx:DataGridColumn id="col1" dataField="title" showDataTips="true"/>

        <mx:DataGridColumn id="col2" width="25" textAlign="left" dataField="index" showDataTips="true"/>

    </mx:columns>
</mx:DataGrid>

I am displaying a tooltip with this function:

private function displayTooltip(item:Object):String{
    var s:String = " ";
    if (item != null){
        s = s + item.title;
    }
    return s;
}

What I want to do is to 'force' my DataGrid to display ERROR TOOLTIPS with 'errorTipRight' option instead of displaying a regular tooltips.
Is there a simple way to accomplish this?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雪若未夕 2024-08-23 07:24:10

如果您查看此链接,它可能会帮助您完成您想做的事情。简而言之,您希望将创建的工具提示 borderStyle 属性设置为“errorTipRight”。如果您想添加更多样式,请将其包含在样式定义中。

链接中的第一个示例应该对您有更多帮助。

If you look at this link it might help you with what you are trying to do. In short you want to set the tooltip you created borderStyle property to "errorTipRight". If you want to add more styling, include it in a style definition.

The first example in the link should help you more.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文