I have been working on a flex application with java, as i have used Life Cycle Data Service for communication, i wana know, is there any function of flex, where i can see the loading status in percentage, that how much record is being loaded.
Problem is, if there is lengthy record, no body comes to know, whats happening with software, like in Comboboxes or Grids, users usually think it as a BUG in application, but ofcourse it is not.
I need such graphical loader, which keeps on loading with proper status in percentage, until it receives all data from JAVA (SQL Server).
Kind regards Atif
Percentage loading is possible if you implement your own Socket protocol since you know exactly how many bytes are coming through, but that would be overkill for you. The best thing you can do is create a proper UX where there's a loading indicator that pops up until all the data has arrived.