Aliaksei Danchanka

Results 17 issues of Aliaksei Danchanka

Null pointer exception when using sample from [documentation](https://documentation.lsfusion.org/pages/viewpage.action?pageId=3670087): // menu without scrollbars under the root window WINDOW menu MENU HIDESCROLLBARS DRAWROOT POSITION(20, 6, 80, 4); ``` java.lang.NullPointerException at lsfusion.server.language.ScriptingLogicsModule.createMenuWindow(ScriptingLogicsModule.java:4368) at...

bug

We can specify only hours and minutes in these literals at the moment.

Possible solutions: 1. Consider context ( `alignment = END`) when parsing metacode 2. Add new keyword (`ALIGNEND`, for example) and use it inside metacode 3. Rename `END` property, use another...

bug

We cannot initialize `NONULL` properties of static objets in `onStarted()` handler. This code leads to a runtime error: ``` CLASS Item 'Номенклатура' {product,service} name 'Наименование' = DATA STRING[50] (Item) INDEXED...

Code from DBManager.java: ``` ScriptingLogicsModule module = businessLogics.getModule("Country"); if(module != null) { LP lp = module.findProperty("isDayOff[Country,DATE]"); Properties props = new Properties(); props.put("dayoff.tablename", lp.property.mapTable.table.getName(sql.syntax)); props.put("dayoff.fieldname", lp.property.field.getName(sql.syntax)); adapter.ensureScript("jumpWorkdays.sql", props); } ``` Thus,...

bug

This separator is a string literal right now.

Sometimes we store large pictures in a database and need to show them in the table as small size pictures. At the moment, rendering could be really slow because image...

The erroneous code: ``` CLASS Chat; someAbstractProperty = DATA VARSTRING[100] (Chat); // not abstract someProperty = DATA VARSTRING[100] (Chat); someAbstractProperty(Chat chat) += someProperty(chat); ``` At the moment, the error text...

Sometimes we need to auto resize column width to preferred width when exporting to XLSX. @AFilipchyk commented that it was not possible with standard JasperReports functionality.