Forum Replies Created

  • Franco Maregotto

    Member
    June 6, 2023 at 9:49 am in reply to: O$11 modify Keys

    Gotz

    while I’ve found the way to write the new setting in win10 (opening keys.json directly from the studio folder and a text editor) I can’t find any keys.json on Mac.

    So how to?

    Cheers & thanks

    Franco

  • Franco Maregotto

    Member
    May 9, 2023 at 4:47 pm in reply to: Data grid – Turning cells ‘red’

    Allan

    Coloring a grid is something I do a lot..

    try this:

    For iList.$line from 1 to iList.$linecount step 1

    If iList.yourcellValue>0

    Do $cinst.$objs.MainPane.$objs.jsGrid.$objs.myField.[iList.$line].$textcolor.$assign(kJSThemeColorPrimary)

    Else

    Do $cinst.$objs.MainPane.$objs.jsGrid.$objs.myField.[iList.$line].$textcolor.$assign(kRed)

    End For

    HTH

    Franco