User Profile & Activity

Yudi Member
Page
of 259
Posted: January 9, 2015 9:39 AM

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.

Posted: January 9, 2015 8:40 AM

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.

Thank you and have a nice day.

Posted: January 9, 2015 4:46 AM

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.

Posted: January 9, 2015 2:36 AM

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.

Posted: January 8, 2015 6:05 AM

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 AM
Reason: 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.

Posted: January 7, 2015 4:55 AM

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:

  • IIS 8.5.9600.16384 running on Windows 8.1
  • Application pool: DefaultAppPool (.NET CLR Version v4.0.30319 with Integrated pipeline mode)
  • WebUI.NET Framework 3.0 build 931
  • WebTextEditor 2 build 5

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.

Posted: January 7, 2015 2:47 AM

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.

  • Crosslight version (for example: Crosslight 3 Update 1)
  • the problem persist on device/emulator?
  • device information (for example: Nexus 5 running Android 5.0)

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.

All times are GMT -5. The time now is 2:05 PM.
Previous Next