User Profile & Activity

leo Chandra Member
Page
of 14
Posted: May 21, 2015 3:37 AM

Hi all,

For your information, We have released a hotfix for Chrome 43 support. Please find the hotfix on attachment. To apply the hotfix, you could refer to the step-by-step instruction on "To apply WebUI.NET Framework hotfix" section at http://www.intersoftpt.com/Support/ASPNET/Tutorial/Text/Apply-ASPNET-product-hotfix-manually/.

Best Regards,
Leo

Posted: May 20, 2015 8:43 AM

Hi Agus,

For a detail regarding server data access, you could refer to http://developer.intersoftpt.com/display/crosslight/Server+Data+Access.

Btw, could you tell me what the specific topic that you would like to hear in regard to HTTP Post request. That way I may be able to provide you with the information that you want.

Best Regards,
Leo

Hi Vishal,

It worked fine on my end with that setting. Could you share me a sample that I could used to observed this behaviour?

Best Regards,
Leo

Posted: May 19, 2015 2:49 AM

Hi Agus,

To make a HTTP Post request, you will need to create a RestRequest with Post HTTP Method that will be handled by the RestClient. Bellow will be a simple example code:

// Create a RestClient with specified baseURLstring baseUrl = "http://baseURL/";IRestClient client = new RestClient(baseUrl);
// Create a request that use Htpp POST Method.
string resource = "resourcename"
RestRequest request = new RestRequest(resource, HttpMethod.POST);
// Set Request Data Format to Json request.RequestFormat = RequestDataFormat.Json; // Serializes obj to data format specified by RequestFormat and adds it to the request body. request.AddBody(Data); // Execute the RestRequest IRestResponse response = await client.ExecuteAsync(request);

For your information, you could send a file in your request with request.AddFile:

request.AddFile("parameter name", byteData, "filename.jpg");

For your information, you could also change your repository behaviour to use RestRequest with Post HTTP method by overwriting the request initialization process of your repository. Example, if you want to use RestRequest with Post HTTP method for GetAllAsync, please overwrite the InitializeGetAllAsyncRequest and return a RestRequest with POST HTTP method.

Hope that this will help you.

Best Regards,
Leo

Hi Tenika,

I have made a test using the layoutSettings that you have used in your WebGrid. The test was done by testing WebGrid 8 (8.0.7200.260) and WebGrid 9 (9.0.7200.1) viewed with IE 11.0.16 and IE 11.0.18(KB3038314) browser on Window 8.1. The result show the same result as my previous test, IE 11.0.18 does run slower but there's only slight differences compare to IE version 11.0.16.

As your reference, I have attached the sample that I have used on my test. Please add the sample to WebGrid sample included in installation folder in order to test it.

Best Regards,
Leo

Hi Vishal,

Please see my response on http://www.intersoftpt.com/Community/WebGrid/Single-Row-is-not-visible-under-the-web-grid-in-Internet-Explorer-11/.

Hi Vishal,

It seem your data row was got hidden by horizontal scroll bar. I would like to confirm if you have set WebGrid AutoHeight to true. If so, this problem could happen because the element that contain the WebGrid did not specified any height specification. To solve this, Please try set WebGrid Height to "300" and set AutoHeight to false, or you could try specify the height of the WebGrid's Container to 300px. That should solve it.

Best Regards,
Leo

Hi Tenika,

Could you tell me more about this. Please tell me the setting that you have been using on WebGrid and whether the problem only happen when WebGrid process a large a mount of records.

For your information, I have done some test on my end with IE 11 on windows 8.1. The test used VirtualLoadPaging.aspx with VirtualPageSize set to 500. The result was IE 11.0.18 (KB3038314) does run slower but it only about 40-80 milisecond differences with IE version 11.0.16.

Best Regards,
Leo

Posted: May 13, 2015 9:32 AM

Hi Agus,

Based on the error that you got, it seem that Microsoft.AspNet.Identity.EntityFramework was missing in your WebAPI project. This issue could happened because there was an interuption or error when our project template generating all the required item for the new project.

Please make sure that you have Administrator privilage when creating the business template and as addition you could try enabling the "automatically check for missing packages during build in visual studio" option in NuGet Package Manager Setting (Tools->NuGet Package Manager->Package Manager Settings).

You could find a sample of newly generated Business Template at here as comparison. To use the sample, place crosslight assembly in Packages\Intersoft.Crosslight. I have test the generated project and it was working fine on my end.

Best Regards,
Leo

Posted: May 13, 2015 7:41 AM

Hi Agus,

The following guides will surely take your interest.

  1. Enterprise Data Access
  2. Building Business Apps with Enterprise App Framework

Enterprise Data Access will provide you with the information about how the data was populate in crosslight design pattern. And specially one of it segment, Creating Entity Model and Services with Crosslight Entity Designer Extensions, will guide you to use our Entity Designer Extension to generate all required services, like data repository, on your project to speed up development time.

"Building Business App With Enterprise App Framework" will guide you to use our application framework that can dramatically reduce a lot of code redudancy and improve development efficiency. This page also contain a video that will introduces how to build data aware apps with Crosslight Enterprise Framework.

Best Regards,
Leo

All times are GMT -5. The time now is 11:39 PM.
Previous Next