User Profile & Activity

Handy Surya Support
Page
of 223

Hi Domingo,

You will need to do the following.

In your view model, overrides the ExecuteRefresh method and call the RefreshData.

// Override the ExecuteRefresh method and call the RefreshData 
protected override void ExecuteRefresh(object parameter)
{
    base.ExecuteRefresh(parameter);
    this.RefreshData();
}

Make sure your view model set the EnableRefresh property to true.

public ItemListViewModel()
{
    this.EnableRefresh = true;
}

Lastly you need to bind the RefreshCommand property in your binding descriptor.

public class ItemListBindingProvider : BindingProvider
{
    public ItemListBindingProvider()
    {
        ...
        this.AddBinding("TableView", BindableProperties.RefreshCommandProperty, "RefreshCommand");
    }
}

Hope this help; we’ve also updated the online documentation related to this topic. Thanks for the inquiry.

Hello,

I tried to run the attachment on 64bit and it works fine. Did you get any error? Please let us know in details.

Regards,
Handy

Posted: May 6, 2014 11:20 PM

Hello Richard,

We are sorry for the late response. Regarding your issue, you mean the binding does not work? May I take a look how you do your binding in your case?

Regards,
Handy

Posted: April 9, 2014 2:08 AM

Thanks Domingo for sharing with Steve. @Steve, Can you email to me your user credential? We will need it to investigate your issue.

Regards,
Handy

Posted: April 7, 2014 9:31 PM

Unfortunately, we are still working on that. As I said, the xml can be generated from your account page under License section. When you click runtime license besides your license in that page, it will download autogenerate-xml file. Copy those xml content and paste it into your assembly info.

[assembly:IntersoftLicense(@"<License>put your auto generated xml content in here</License>")]

Here is the auto-generate xml format sample:

 <Id>your id</Id>

  <Type>Subscription</Type>

  <LicensedProducts>

    <Product Name=""Crosslight"" Version=""1"" />

  </LicensedProducts>

  <Customer>

    <Name>your name</Name>

    <Email>your email account</Email>

    <Company>your company</Company>

  </Customer>

  <Signature></Signature>

</License>


Regards,
Handy

Posted: April 6, 2014 11:15 PM

Hello Steve,

License key is only used to register the control so it can be used without evaluation in development.

If you want to deploy, you will need runtime license key. Currently, we have generated it via tools in our website. Login with your account in www.intersoftpt.com. Once you had, under your account in license section, you can generate the runtime in xml. Copy the file into your project. 

Regards,
Handy

Posted: April 6, 2014 10:45 PM

Hello Steve,

License key is only used to register the control so it can be used without evaluation in development.

If you want to deploy, you will need runtime license key. Currently, we have generated it via tools in our website. Login with your account in www.intersoftpt.com. Once you had, under your account in license section, you can generate the runtime in xml. Copy the file into your project. 

Regards,
Handy

Posted: March 26, 2014 9:25 PM

Hello Dean,

It is hard to say if we don't have a simple project that replicates your issue. I believe that there should be some missing steps in your page. So, to enhance our collaboration can you send me the project? I can point out what is missing in there.

Regards,
Handy

Thank you for sharing your resources. It was really helpful and our developer team also agreed with your research.

Regards,
Handy

Posted: March 23, 2014 10:50 PM

Hello,

HMTL5 and XHTML behaves differently from Quirks (HTML4) mode. You need to understand the behaviour first. 

First, how to work with dynamic size such as 100%. If you put height 100% for simple div, you will see that it will not have 100% for its height. Why? That because the height itself is calculated based on the outer/parent container. So, the outer/parent need to be set to 100%. Try to check our sample that use HTML5. You will find that in HTML,div and form at the top as container would be set as 100%.

This is also valid for our control. If you have difficulty when configuring HTML5, you can send us your simple sample and we would be glad to help you.

Regards,
Handy

All times are GMT -5. The time now is 9:59 PM.
Previous Next