Hello!
I'm currently evaluating IGFlowLayoutView for a possible integration into our application. So far I like it a lot, but now I've stumbled upon a problem I'm having a hard time fixing:
I'm trying to make one of the displayed items an IGCalendarView by assigning the calendar to one of the cells in CreateCell(). This works fine until I scroll the FlowLayout horizontally or vertically. As soon as the calendar view is scrolled out of the application's bounds, the application stops responding completely. I did the same with a WebView and that worked perfectly.
Here's what I did, maybe someone can point me in the right direction (or show me some obvious mistake...):
public override IGFlowLayoutViewCell CreateCell(IGFlowLayoutView flowLayoutView, int index)
...
switch (index) { case IDX_WEBVIEW: cell = flowLayoutView.DequeueReusableCell("WEBVIEW") as IGFlowLayoutViewCell; if (cell == null) { cell = new IGFlowLayoutViewCell("WEBVIEW"); } cell.ContentView = _webView; break; case IDX_CALENDAR: cell = flowLayoutView.DequeueReusableCell("CALENDAR") as IGFlowLayoutViewCell; if (cell == null) { cell = new IGFlowLayoutViewCell("CALENDAR"); } cell.ContentView = new IGCalendarView();
Please let me know if you need further information. Any help would be greatly appreciated!
Thanks in advance
Andreas
Hello Andreas,
I have created support case CAS-144050-X4M2G3 to track this.
You can view this support case by navigating to https://ko.infragistics.com/my-account/support-activity
Please let me know if you have any other questions about this.
This issue has been resolved in the latest available Service Release for Nuclios as of the date of this post.
To download the service release, log in to ‘Account’ and select ‘Keys & Downloads’. Select the appropriate tab for this product; then the license key. The available service releases (Hot Fixes) should now be listed on the page.
Please let me know if I may be of further assistance.
Hi Dave,
thanks for the support, the latest NucliOS release fixed the issue.
Kind regards
Andreas Kind