User Profile & Activity

Glenn Layaar Support
Page
of 99
Posted: December 2, 2009 3:32 AM

Using resources (javascript files) from previous build with thecomponent dll latest build is not suggested. The component dll may refer to newly created function that was not available in the previous javascript build.

Thank you for the detail structure of the problematic page. I will try to analyse and recreate the issue in our environment.
Posted: December 1, 2009 11:08 PM

Do you mind creating a simple sample that will create the issue? Or perhaps explain in more details regarding the WebPaneManager structure you are using to cause the issue.

I redesigned the page using HTML tables rather than the WebPaneManger which seems to have fixed the problem.

However since I've upgraded to WebUI Studio 2009 I am getting random IE "hangs" on other pages previously unaffected.

Adrian, do you mind explaining the other page structure that will cause the issue?

I've been experiencing the same issue withWebPaneManager. It seems that if you get too many nestedinstances of this control going the browser will hang. ... I had debugged into this a while back and found that it seemed to hang inside of one of Intersoft's obfuscated javascript functions. ... I'm going to see if I can find the name of that function again and then post it here.

Jerry, thank you in advance for the effort, however in the mean time, which nested instance do you meant? perhaps you could send us the WebPane structure you are using?

Having the WebPane page / structure that cause the issue will help us in recreating the issue in our environment and determine the cause of the issue quicker.

The options for data area field is determine by the DataType of the field. If the data type is string the available option will be Count. Numeric data type will have more option such as Sum, Max, Min, and Average.

The sample I use to test the scenario is attached. The northwind.mdb is already supplied in the WebGrid sample. In the sample you will see that ProductName, string type field, will only have Count option available, while ProductID or UnitPrice, numeric type field, will have more option available. 

Posted: December 1, 2009 12:14 AM

1. In order to add the column in the Pivot Chart view you will need to use the same value for column Name and column DataMember property. In your case, the Name and DataMember will be co2

WebGridColumn col3 = new WebGridColumn();
col3.Name = "co2";
col3.Caption = "Contact";
col3.DataMember = "co2";
col3.Bound = true;

WebGrid1.RootTable.Columns.Add(col3);

2. This issue has been enhanced in WebGrid 7. I have reported this bug for WebGrid 6. I will inform you if there is any update / progress regarding this issue.

3. I could not replicate this issue in our environment. The image is displayed correctly. Have you make sure that you have already used the latest build for WebGrid 6 and WebUI Framework, the latest build is build 218 and build 705.


Posted: November 30, 2009 10:01 PM

I have confirmed that using our latest build, WebAqua does work in Out of Browser mode. The WebAqua build included in the Intersoft WebUI Studio 2009 R1 SP1 Refresh should already include this feature. The latest build for WebAqua 2 and WebUI Silverlight Framework is build 219 and 104 respectively.

Attached is ClientBinding_Paging.aspx sample that has been modified for creating the grid programatically.

Do you mind referencing the article in the WebGrid 7 white paper that mention seamless upgrade from WebGrid 4 to WebGrid 7?

Currently, we do not have a document / article regarding updating WebGrid 4. Do you mind providing the WebGrid 4 markup for further assitance?

Posted: November 29, 2009 11:25 PM

By default, WebCoverFlow does not support text wrapping. However, as shown in the sample EmployeeListBinding.xaml, sample provided in the WebAqua CoverFlow sample, WebCoverFlow support ItemTemplate which you could define your own custom template.

Using this feature, you should be able to bind a description field to a block with textwrapping feature. 

Posted: November 29, 2009 10:04 PM

We have successfully run the sample without any issue in our environment. Based on the error screenshot, I suspect you are not using the latest WebUI Framework for you project.

The latest release build for WebGrid 6, WebDesktop 2.5, and WebUI Framework is build 218, build 217, and build 705 respectively. Also please make sure you already use the latest javascript for each component as well.

Posted: November 29, 2009 9:45 PM

I suspect you are using XHTML Doctype for your page. WebGrid has limited support for XHTML. Our suggestion is please use HTML Doctype in the page to resolve the issue.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >


 

The latest nightly build should have fix the issue. I have taken the liberty to send the laetst nightly build to your account forum email.

You will need to remove the AfterResponseProcess client event handler in order to see the fix, since the AfterResponseProcess will manually expand some of the row in the Grid.

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