Open-Lowcode icon indicating copy to clipboard operation
Open-Lowcode copied to clipboard

Remove the fact page needs to be specific in most widgets

Open openlowcode opened this issue 3 years ago • 0 comments

Widgets of the package org.openlowcode.server.graphic.widget currently require in their syntax the parent SPage given as argument, making the syntax heavier than it should.

Example before:

SComponentBand mainband = new SComponentBand(SComponentBand.DIRECTION_DOWN,this);

Example after

SComponentBand mainband = new SComponentBand(SComponentBand.DIRECTION_DOWN);

openlowcode avatar Oct 24 '20 10:10 openlowcode