anyone can have an idea how to fix this bug?
anyone can have an idea how to fix this bug?
You need to show us how to reproduce it.
Looks like an embedded view that is waiting on a binding to determine what style class to apply and maybe one on the icon path as well. The blue box looks like a default button with no text.
@Jose_Rodolfo_Mutuc, what happens if you set the virtualized property on your table to false?
One technique I've used for a similar issue but other software is to make elements not visible by default, then have some logic evaluate to enable visibility.
This way, they start blank then evaluate to the desired state as they load, the opposite of what you've shown. Unsure if that will work in this case though.
i create a two button (flex repeater) from original only 1 button then i use it in the table component.
where i can see this ? "virtualized property "
okay i will try
it works. what does it mean ?
Virtualized
Enables virtualization of table rows, which is an optimization method that only shows a portion of the underlying data on the chart at a time.
While enabled, the table will only be populated with a smaller subset of data: just the visible rows, and a few rows above and below. The idea being the component will be populated with new records as the user scrolls down the listing, assuming there are enough records to necessitate a scrollbar.
Enabling virtualization generally results in a performance gain in the session, in cases where the data property is populated with a large amount of content, as the table will only have to "load" a small subset of content. The trade off is that the table will need to load records as the user scrolls, so scrolling quickly may not feel as "smooth" when compared to disabling virtualization.
thank you.
how about the button component only when i was embed that . when loading the default blue is showing before the set button color
Can you post the view here so we can have a look at it?