尝试将选择选项列表插入每个组单元格。 它显示为选择元素,但不会像通常的选择一样通过单击扩展。单击不会产生反应。
sql = "select id from agent where extension = '9072' limit 1"
cursor,errorString = conn:execute(sql)
value = nil
if cursor then
row = cursor:fetch ({}, "a") -- we'll have 0 or 1 rows
if row then value = row.id end
end
预期结果: 单击选择展开,然后选择一些选项。 实际结果: 单击任何操作都不会发生。