2016-04-24 52 views
0

我在LiveCode桌面和移動應用程序中使用mergDataGridScroller,它工作正常。 但是在移動設備上,當我在卡的頂部顯示一個組(在mergDataGridScroller的頂部並且與其無關)以向用戶提供其他選擇時,mergDataGridScroller仍會對鼠標/觸摸移動作出反應。 有沒有辦法暫時禁用mergDataGridScroller? 感謝MergExt mergDataGridScroller如何臨時禁用滾動

回答

0

你有兩個選擇:

  • 隱藏mergDataGridScroller包裝組也將隱藏你的數據網格,然後dispatch "updateVisible" to group <your mergDataGridScroller group name>

  • 編輯行爲腳本添加一個命令是這樣的:

    command toggleScroller pVisible 
        if the environment is "mobile" then 
        mobileControlSet sScrollerId, "visible", pVisible 
        end if 
    end toggleScroller 
    
+0

第二個選項工作很好,因爲它不會隱藏卷軸後面。 –