iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
The incremental loading is the process of loading data in small chunks. Set IncrementalLoadingSize to 20 will load only first 20 items; and new 20 items when user scroll to the end of the list.Data synchronization requires all data to be loaded. Since you are enabling data synchronization, you should disable the incremental loading feature.
Hope this help.
The hotfix for this problem is arranged to be available on Crosslight 3 Update 2 which is expected to be arrived on late January 2015.I will keep you updated when the nightly build is ready to be evaluated.
Thank you and have a nice day.
The hotfix for CROS-636 to 649 are arranged to be available on Crosslight 3 Update 2 which is expected to be arrived on late January 2015.I will keep you updated when the nightly build is ready to be evaluated.
The hotfix for CROS-636 is arranged to be available on Crosslight 3 Update 2 which is expected to be arrived on late January 2015.I will keep you updated when the nightly build is ready to be evaluated.
Hi Thomas! We wish you a prosperous and happy new year.
Since MapType is specific to Android platform, I'm afraid that it is only possible to set this in Activities class.Thank you and have a nice day.
I created a simple Crosslight project based on the provided Layout and BindingProvider; then deploy the app to Nexus 4 (running Android 4.4.4).
The reported problem is reproducible in my local end. I noticed that the difficulties to select the edit text happen when there are two cursor appearing at the same time.
I have forwarded this problem to Crosslight development team. It is filed under CROS-687. I will keep you updated with any news I heard from the team regarding CROS-687.
Edited on February 5, 2015 2:30 AMReason: provide link to nightly build of Crosslight 3
I'd like to inform you that nightly build of Crosslight which resolves CROS-687 is now available in here. Please have the nightly build evaluated on your end and let me know if the problem still persist.
Glad to hear that the problem reported under CROS-598 is no longer persist when using the latest Crosslight (v3).
Should you need further assistance or run into any problems regarding our controls, feel free to post it into our forum. We would be happy to assist you again.
I re-test my sample on web server with following specification:
However, I was unable to reproduce the problem using Northwind3.xlsx file.Please feel free to let me know if you find anything that I might miss during my attempt to reproduce the problem.
Note: If necessary, I could provide you with the simple sample project.
I tried to reproduce the reported problem in my end by installing app of Crosslight MvvmSamples project on Android device (Nexus 4 running on Android version 4.4.4) but my efforts were not successful -- everything worked smoothly and the Text Fields was accessed without any issues.
I am willing to asisst you further but in order to do so I would need you to elaborate on your specific scenario and possibly give me a step-by-step guide (or simple sample) that I can use to observe the problematic behavior.
Following information should helps to identify what may cause the problem.
Hi Hachi K,
In the current build version of WebCalendar there is no such feature: to have the calendar show only months and year; and populate selected month and year into textbox once user select a month. I might be able to help by submitting this as feature request to the development team.
For a quick solution, you could use the following hack technique to have that behavior:
JavaScript code
function Render() { var a = setTimeout(ChangeDateTimeInfo,1); } function ChangeDateTimeInfo() { var calendar = ISGetObject("WebCalendar1"); var dateTime = calendar.SelectedDate; var month = (dateTime.getMonth() + 1); var qt = Math.ceil(month / 3); var querter = calendar.GetMonthCellsByQuarter(qt); for (var i = 0; i < querter.length ; i++) { if (querter[i].getAttribute("m") != month) { querter[i].removeAttribute("style"); } } var input = document.getElementById("TextBox1"); if (input) input.value = month + "/" + dateTime.getFullYear(); }
ASPX code
<ISWebEssentials:WebCalendar ViewMode="Quarter" ID="WebCalendar2" runat="server" Height="190px" Width="170px"> <ClientSideEvents OnSelectedDateChanged="ChangeDateTimeInfo" OnAfterRender="Render()" /> </ISWebEssentials:WebCalendar> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
Hope this is useful.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname