workflowproducts / envelope

Publish web apps based on your PostgreSQL database fast!
https://workflowproducts.com/envelope.html
Apache License 2.0
53 stars 2 forks source link

Collected notes/issues #2 #158

Closed michaeltocci closed 1 year ago

michaeltocci commented 2 years ago

GS-GRID: if the min-widths attribute sets a column width to "0", hide that column at that width.

WEBSOCKETS: Brave Browser limits each domain to ten websockets between all pages. We should have some kind of warning to make sure the developer is adequately warned.

GS-COMBO: On Android, selecting an option doesn't change the value.

GS-COMBO: Unsure how to reproduce the issue, but on occasion ends up in a loop and reaches maximum call stack size. This doesn't seem to interrupt function.

FILE EDITOR: We should have a snippet (or a utility CSS class) for allowing background colors to be shown when printing the webpage.

    -moz-print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
crosstocci commented 1 year ago

GS-GRID: if the min-widths attribute sets a column width to "0", hide that column at that width. Added/fixed "small" keyword being replaced by "all"

WEBSOCKETS: Brave Browser limits each domain to ten websockets between all pages. We should have some kind of warning to make sure the developer is adequately warned. Added warning when on brave or when more than nine websockets are opened.

GS-COMBO: On Android, selecting an option doesn't change the value. Couldn't reproduce, Combo would not open in gs-table on android but has been fixed.

GS-COMBO: Unsure how to reproduce the issue, but on occasion ends up in a loop and reaches maximum call stack size. This doesn't seem to interrupt function. Fixed. AttributeChanged was calling renderControl when the value attribute was changed. renderControl set the value attribute. This made a loop. Now render control only sets value attribute if the value is different.

FILE EDITOR: We should have a snippet (or a utility CSS class) for allowing background colors to be shown when printing the webpage. Added.