Thatās was the main reason why I added SetProperty and GetProperty blocks. It basically allows you to set/get properties even for Designer Only properties.
Can you try FontBold without spaces? And you donāt need to use Schema for that. You can try it on SetProperty block.
The issue was space bewteen Font and Bold word. We need to use āFontBoldā instead of āFont Boldā. That is why last time with SetProperty it shows error.
Also, this reminded me to add a feature for it, in the next release, spaces in the property names will be deleted anymore by default to decrease the confusion.
I have a problem to solve. I am using schematics to create components in my application. The application contains a lot of components and due to the time it takes to create the components, I donāt want to create everything at once. I am using layout to build pages and figured I would be building components for each āpageā separately when I opened it. After opening the page, the application starts loading the data from the lists into the components. I would need an event after creating a given schema. For example, I create components from the schematic for the first page and call it āpage oneā, then after creating the components for the first page, the āSchemaCreatedā event fires in which I could read which schematic was loaded. Then I could add IF created āpage oneā then run ā¦
I can add parameters to SchemaCreated event, so you can learn which schema is created.
As workaround, you can create multiple instances of Dynamic Components by dragging another one to Designer, so you can run different Schemas in different instances.
Hi @yusufcihan , while I load list more than once during same session, ID increases on each load.
For example, if there are 10 items on list. On first load IDs will be 1 to 10 as it should be. But on second load it will be 11 to 20. And on third load 21 to 30.
Iām deleting used IDs before each load. So any idea to fix this up?
Extension doesnāt have an auto-increment system itself. Are you using LastUsedID block to increment the ID? If so, then the LastUsedID block will return the last ID that you created even if component is deleted.
How can I set Background Color of a Button using .Schema block.
I already understand the property name would be āBackgroundColorā. But what will be the parameters?