为什么将igx-dialog与igx-grid集成时不起作用

问题描述

lst = open('directory//filename.txt').readlines()

fixed = []
for line in lst:
    inner = line.split('\t') #string to list
    if inner[16] == '':
        inner.pop(16)
    inner = "\t".join(inner) #list to string
    fixed.append(inner)

with open("directory//filename.txt","w") as output:
    for item in fixed:
        output.write("%s" % item)

在上面的代码中,警报对话框已集成在igx-grid中,但不幸的是,它已连接到网格的末端并成为主体元素,结果,它无法显示预期的覆盖效果(模糊背景)

出于某种原因,在这种情况下,按钮单击事件(onRightButtonSelect)似乎不起作用

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)