User Profile & Activity

Hans Kristian Member
Page
of 69
Posted: November 25, 2014 7:27 AM
Hello,

I have tested your issue with the latest WebDesktop hotfix.
It seems the developer team have resolved the resize issue.

Please kindly try to use the latest WebDesktop hotfix then please let me know your response regarding this issue.

Thank you for your help.

Regards,
Hans K.
Hello,

I apologize for any inconvenience this problem may have caused you.

Could you inform me more information regarding your current issue?

What is your current WebCombo version (ISNet.WebUI.WebCombo.dll) and Intersoft Framework version (ISNet.dll)?

Are you enable SmartWebSources on your project or not?
Please kindly ensure you have added all assembly that your project need in Bin folder.

Or is it possible to you to provide me a simple working sample/project that replicate your issue?
So that I can help you to find solution for your issue.

Thank you.

Regards,
Hans K.

Posted: November 20, 2014 3:56 AM

Hello,

I apologize for any inconvenience this problem may have caused you.

I found an article that discuss about issue that similar with yours.
Please kindly have review on this blog, perhaps it can help to solve your issue.

However, if the issue still persist, could you inform me information about what Android sample that you run?
Or could you inform me the step by step how to reproduce your issue in my end?
Please kindly try to update you current Crosslight to the latest version & update your Xamarin as well.

Thank you.

Regards,
Hans K.

Hello,

I’m glad that you have found the solution for your current scenario.

Should you have further question, please do not hesitate to contact us.

Thank you.

Regards,
Hans K.
Posted: November 7, 2014 2:41 AM
Hello,

Your welcome Thomas Albert.

We will let you know if there is more information regarding Crosslight 3.0 release.

Thank you.

Regards,
Hans K.

Posted: November 4, 2014 6:19 AM

Hello,

You can use the current Crosslight version along with OS X Yosemite & XCode 6.
You could get the latest Crosslight build by following this link.

Hope this helps. Thank you.

Regards,
Hans K.

Hello,

The Crosslight development team has managed to fix the “Building Android Project” issue.
You could get the hotfix, Crosslight v2.0.5000.117, from this link below:
http://git.intersoftpt.com/projects/CROS/repos/updates/browse

Please kindly have review on the hotfix and let me know the result on your end.

Thank you for your helps.

Regards,
Hans K.

Posted: November 4, 2014 2:59 AM

Hello,

Thank you for question regarding Crosslight.

I got news that the Crosslight 3.0 is estimated to be available in mid-November 2014.

You could follow this link for further information Crosslight roadmap.

Please bear with us and thank you for your understanding.

Regards,
Hans K.

Hello,

Thank you for the question regarding WebGrid.

Basically, WebGrid doesn’t provide method to collapse the Self Reference WebGrid from server side.
However, WebGrid has provided a method to expand & collapse the Self Reference WebGrid from client side.
There is a method to expand the Self Reference WebGrid from server side.

To show you how to implement those method, I tried to modify one of WebGrid Samples, SelfReferencingGrid.aspx page.
In this modified sample/page, I will expand and collapse the first row. I added a couple of buttons to implement those method.

Here’s the snippet code about expand row from client side:

function Button1_Click(){
    var WebGrid1 = ISGetObject("WebGrid1");
    var row = WebGrid1.RootTable.GetRowByKeyValue("2");
    row.ExpandSelfRefRow();
    return true;
}

Here’s the snippet code about collapse row from client side:

function Button2_Click()
{
    var WebGrid1 = ISGetObject("WebGrid1");
    var row = WebGrid1.RootTable.GetRowByKeyValue("2");
    row.CollapseSelfRefRow();
    return true;
}

Here’s the snippet code about expand row from server side:

protected void Button3_Click(object sender, EventArgs e)
{
    WebGrid1.RootTable.Rows.GetRowByKeyValue("2").ExpandSelfRefRow();
}

I attached the modified sample as well, so that you can have review on the sample. You just simply add the sample to the WebGrid Samples Solution.

In this sample, by default, the row state of the Self Reference WebGrid is Collapse. The expanded row will be collapse after post back. So I don’t need the collapse method in server side to collapse the row.

If you don’t mind, could you inform me more information regarding your current scenario? So that I can help you to find the suitable solution for your current scenario.

Hope this helps.

Regards,
Hans K.

Hello,

I apologize for any inconvenience this problem may have caused you.

I suggest to use build 95 for now. The developer team will investigate the issue further more.

Thank you for your understanding.

Regards,
Hans K.

All times are GMT -5. The time now is 8:36 PM.
Previous Next