User Profile & Activity

Hans Kristian Member
Page
of 69
Posted: September 4, 2014 10:19 PM
Hello,

I apologize for my mistake.

I mean, you could try to set the “LoadOnDemand” property (under <PreviewRowSettings> tag) to “False", not “true”.

Regards,
Hans K.
Posted: September 3, 2014 11:57 PM

Hello,

Thank you for the reply.

Basically, Intersoft WebAPI project use the standard ASP.Net identity database.
So (occasionally) Visual Studio will auto generate the standard database in our project. Visual studio will get the database’s name in project connection string (CrosslightDB.mdf).
But Intersoft wants to add a custom field to the standard database for project’s purpose.

In register user process, Intersoft project will create the new (custom) database and add the user data to the database.
However the creating / generating the new custom database process has failed, due to Visual Studio has created the database with the same name (CrosslightDB.mdf).

Currently, the developer team still investigates the way to resolve this issue.

Meanwhile, you could do the solution on my prior post if get the same issue while registering the new user.

Thank you for your understanding.

Regards,
Hans K.

Posted: September 3, 2014 10:59 PM

Hello,

Thank you for the reply.

I have forward this issue the developer team under work item ASPNET-124.
I will let you about the update regarding this issue.

However, to resolve this issue you could try to set the “LoadOnDemand” property (under <PreviewRowSettings> tag) to “True".

Hope this helps.

Regards,
Hans K.

Posted: September 3, 2014 5:20 AM

Hello,

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

Based on your information, I tried to investigate this issue with WebGrid sample, named VirtualLoadwithCustomLoadonDemand.aspx page.
I modified the WebGrid’s configuration so that similar with your current scenario.
In <RootTable> tag, I set the PreviewRowVisible property to "True".
In <PreviewRowSettings> tag, I set the DefaultExpanded property to " False" & LoadOnDemand property to "True". (I attached the modified page as well)

Like you did, I got the error message while trying to expand the preview row on 51st (or above).
Did you get the same / similar error message (PreviewRow_ErrorMessage.png)?
If no, could you provide me information regarding your error message?

Thank you for your help.

Regards,
Hans K.

Posted: September 2, 2014 11:38 PM
Hello,

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

I have tried to create localized business template and registered a user with the Windows Phone Emulator.
But unfortunately, the register process works fine on my end.

There are a couple things that you could try to resolve the issue.
First, please kindly try to open the Visual Studio with “Run As Administrator” option. This “Run As Administrator” option is used to run the WebAPI server.
The WebAPI is to handle data transaction.
To make sure the WebAPI server already up, you could check in Windows Taskbar, like in screenshot below (WebApionIISExpress.jpg).


Second, before run the project, please kindly try to delete CrosslightDb.mdf database. You could found the database under WebAPI project, App_Data folder (CrosslightDb.png).


Hope this helps.

Regards,
Hans K.
Posted: September 2, 2014 12:02 AM

Hello,

Thank you for the reply.

I am glad to hear that.

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

Regards,
Hans K.

Posted: August 31, 2014 11:36 PM

Hello,

I apologize for the inconvenience.

Please try to use “DoResize” method in “OnShowDropDown” client side event.

Here’s the example snippet code how to use “DoResize” method:

<ISWebCombo:WebCombo ID="WebCombo1" runat="server">    <LayoutSettings>
        <ClientSideEvents OnShowDropDown="WebCombo1_OnShowDropDown" />
    </LayoutSettings>
</ISWebCombo:WebCombo>

function WebCombo1_OnShowDropDown(controlId, left, top, width, height)
{
    var WebCombo1 = ISGetObject(controlId);
    WebCombo1.DoResize();
}

Hope this helps.

Regards,
Hans K.

Posted: August 31, 2014 10:16 PM

Hello,

Currently, there is no API to hide/show the WebAccordion’s item.

I will forward this scenario as a feature request to the developer team, if your want to.

I apologize for the inconvenience.

Regards,
Hans K.

Posted: August 29, 2014 5:31 AM
Hello,

I apologize for this misunderstanding

Could you provide the step by step guidance to replicate the issue or provide me the screenshot regarding the issue?

Have you try to review the attached sample?
Do you get the same issue while using the attached sample?
If no, could you help to modify the sample so that I can investigate the issue further more.

Thank you for your help.

Regards,
Hans K.

Hello,

I found a work around to hide the WebAccordion’s item via JavaScript & Server Side code.

Here’s the example snippet code to hide the first WebAccordion’s item:

via JavaScript:function Button1_OnClick()
{
    var WebAccordion1 = ISGetObject("WebAccordion1");
    WebAccordion1.FrameObj.childNodes[0].style.display = "none";
}

via Server Side:
protected void Button2_Click(object sender, EventArgs e)
{
    string javaScriptCode = "";
    javaScriptCode += "var WebAccordion1 = ISGetObject('WebAccordion1');";
    javaScriptCode += "WebAccordion1.FrameObj.childNodes[0].style.display = 'none';";
    this.Page.ClientScript.RegisterStartupScript(this.GetType(), "Script", javaScriptCode, true);
}

Please kindly have review on the attached sample to see the result about this work around.

Regards,
Hans K.

All times are GMT -5. The time now is 5:53 AM.
Previous Next