如何使用 AG Grid 和 Adaptable/
How can I make an Alert appear in the screen using AG Grid and Adaptable/
我在 AG Grid 中创建了一个 Observable Alert(使用 Adaptable),当订单过时 2 分钟时它会正确触发。
但我只在工具栏中看到警报,而不是像此演示中那样在网格中看到弹出通知:https://demo.adaptabletools.com/alertsmessages/aggridobservablealertdemo
警报的表达式是
GRID_CHANGE( [order_tick] ), TIMEFRAME('2m') )
我做错了什么?
如果您是在 运行 时或设计时提供警报,请不要在问题中说明。
如果是后者,那么在您的 Alert Predefined Config 定义中,您需要在 AlertProperties
部分中将 'DisplayNotification' 设置为 true:
AlertProperties: {
DisplayNotification: true,
}
如果您在 运行 时创建它,那么在向导的第 3 步 ('Type and Display') 中,您需要启用复选框:'Show a Notification when Alert is triggered'.
我在 AG Grid 中创建了一个 Observable Alert(使用 Adaptable),当订单过时 2 分钟时它会正确触发。 但我只在工具栏中看到警报,而不是像此演示中那样在网格中看到弹出通知:https://demo.adaptabletools.com/alertsmessages/aggridobservablealertdemo
警报的表达式是
GRID_CHANGE( [order_tick] ), TIMEFRAME('2m') )
我做错了什么?
如果您是在 运行 时或设计时提供警报,请不要在问题中说明。
如果是后者,那么在您的 Alert Predefined Config 定义中,您需要在 AlertProperties
部分中将 'DisplayNotification' 设置为 true:
AlertProperties: {
DisplayNotification: true,
}
如果您在 运行 时创建它,那么在向导的第 3 步 ('Type and Display') 中,您需要启用复选框:'Show a Notification when Alert is triggered'.