You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);
The text was updated successfully, but these errors were encountered:
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);
The text was updated successfully, but these errors were encountered: