Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    RollOverCanvas is not shown on new records

    I’m using SC V12.0p20180728.

    In a ListGrid "rollOverCanvas" will not be displayed on new, not saved records.

    You can see this with your showcase example “Grids” - "Appearance" - “RollOver Reticle Effect”
    Add the following code for a new Button:

    Code:
    isc.IButton.create({
        top:250,
        title:"Add New",
        click:"countryList.startEditingNew({'capital':'Test'}); countryList.endEditing();"
    });
    and set one field of the listgrid "required" e.g.
    Code:
    {name:"countryName", title:"Country", required:true}
    If you press the button a new, not saved row is added. On Mouse over only the row color changes, but "rollOverCanvas" will not be displayed.
    For a consistent UI it would be useful if it works.

    Thanks

    Burkhard

    #2
    Please see the Handling Unsaved Records overview. Unsaved records have certain documented limitations, this is one of them. Alternate approaches are suggested.

    Comment

    Working...
    X