GridWeb Problem

Hi.

I'm having a problem with a page that includes a GridWeb in a asp:Panel.

My page has two asp:Panel, one that is visible as soon as you load the page. This panel has a list and whenever the user clicks one item in the list, that panel hides and then the second panel, wich includes the GridWeb is shown. So far so good...

The problem is that, once this change of panels ocur, I am unable to change Worksheets in the GridWeb control. The acw_ajax_call occurs, the server returns 200 (OK) but nothing happens. If I show this panel automatically when the page loads, it works...

Heres a simple code that explains my problem.

Page:

<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="TesteDFM_MP.aspx.cs" Inherits="TesteDFM_MP" Title="Untitled Page" %>









DEMO IE9 - ASPOSE v2.6







Code Behind:

protected void Page_Load(object sender, EventArgs e)
{
SelectPlaceHolder.Visible = true;
GridPlaceHolder.Visible = false;

GridWeb1.ShowSaveButton = false;
GridWeb1.ShowUndoButton = false;
GridWeb1.PresetStyle = PresetStyle.Custom;
GridWeb1.ShowDefaultGridLine = false;

this.GridWeb1.EnableAJAX = true;

GridWeb1.WebWorksheets[0].Cells["A1"].PutValue("Validation:->");
GridWeb1.WebWorksheets[0].Cells["B1"].CreateValidation(Aspose.Cells.GridWeb.ValidationType.CustomFunction, false);
GridWeb1.WebWorksheets[0].Cells["B1"].Validation.ClientValidationFunction = "myvalidation";

GridWeb1.WebWorksheets[0].Cells["A2"].Formula = "=SUM(B2:C2)";
GridWeb1.WebWorksheets.RunAllFormulas();

if (!base.IsPostBack)
{
if (string.IsNullOrEmpty(this.ReOrcamentoSessao))
{
this.StateHiddenField.Value = "NEW";
//this.GridPlaceHolder.Visible = false;
}
else
{
string argument = this.ReOrcamentoSessao.Clone().ToString();
string tipo = Session[SESSAO_TIME_MATERIALS].ToString();
this.ReOrcamentoSessao = null;
this.Grid_Command(this, new GridViewCommandEventArgs(null, new CommandEventArgs(tipo, argument)));
}
}
}

protected void btnOK_Click(object sender, EventArgs e)
{
SelectPlaceHolder.Visible = false;
GridPlaceHolder.Visible = true;
}

I'm using IE9 and the latest Aspose.Cells.GridWeb dll, with product version 2011.09.09, Aspose.Cells for .NET v7.0.1Aspose.Cells for .NET v7.0.1.

Hope it helps.

Thanks in advance.

Hi,

Thanks for your posting and provide us a sample code and testing it with the latest version.

However, we will also need your running sample C# project replicating this problem. Some screenshots will also be helpful.

We will look into it and help you asap.

Hi.


In attachments you have a zip file that contains a TestApp Web Site.

Just run it and you’ll have a Default page opened. In it you have two buttons for two examples.

The first example is the simple one: A Grid Web with a Sum between cells B2 and C2. The result appears in cell A2. You also have two Worksheets: the first one where this sum is configured, and the second one that, in this example, is the Evaluation Copyright Warning but could be another one with any operation. You may change between Worksheets and the acw_java_call works fine.

Press Home Button.

Go to Second example.

The Second example is a page with two Asp:Panel. When the page loads, just the first one is Visible. It contains a button that hides the first panel and shows the second one. The second contains a Grid Web exacly like the one in the first example. Sum between two cells. The sum works fine, the acw_java_calls work as a charm. When you try to navigate to Worksheet number 2, java call returns 200 (OK) but nothing happens. It just don’t change Worksheets.

I guess this description and this example shows you exacly what happens.

Hope you can review it soon.

Thanks in advance.

Hi,


Thanks for the sample project.

I have tested your project with v2.6.3.2000 and found the issue as you have mentioned. I cannot change or navigate to the second / other worksheet even I click on the second sheet. The first example works fine while the second example does not work fine.

I have logged a ticket for the issue with an id: CELLSNET-31059. We will look into your issue to figure it out soon.

Thank you.

Hi.


Any news on this problem? It’s almost a week now…

Is there any estimated time for the resolution of this problem?

Thanks in advance.

Hi,

I am afraid, the issue is not resolved yet. I have asked the concerned developer to update on the issue. Once I have any update, I will let you know.

Thank you.

Hi,

We have checked the bug and do some testing , we found that there is a compatibility question between Asp:Panel and our GridWeb product

We suggest you to use Panel as the following way:


Panel: GridPlaceHolder

Replace “GridPlaceHolder.Visible = true;” to GridPlaceHolder.Style.Add(“display”,"");

Replace “GridPlaceHolder.Visible = false;” to GridPlaceHolder.Style.Add(“display”,“none”);

Then the sample which Customer supplied to us will work well.

Hi.


I tryied the workaround that you sugested and yes, the control reacts, but now I have a problem in acwmain.js, in the function gridajaxupdateStyles when updating innerText (sheet.innerText=styleHtml;). The string passed in styleHtml is:

.ctl00_Body_MainGridWeb_21{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:#FFFFFF 1px Solid;}
.ctl00_Body_MainGridWeb_17{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-top:Black 1px Solid;border-bottom:#FFFFFF 1px Solid;}
.ctl00_Body_MainGridWeb_19{color:#FFFFFF;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;}
.ctl00_Body_MainGridWeb_2{border-width:0px;height:100%;width:100%;table-layout:fixed;border-collapse:collapse;}
.ctl00_Body_MainGridWeb_8{color:#000000;background-color:#D9D9D9;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_13{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;}
.ctl00_Body_MainGridWeb_4{border-width:0px;height:100%;border-collapse:collapse;}
.ctl00_Body_MainGridWeb_16{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:#FFFFCC 1px Solid;border-top:Black 1px Solid;border-bottom:#FFFFFF 1px Solid;}
.ctl00_Body_MainGridWeb_33{color:#FFFFFF;background-color:#808080;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_32{color:#000000;background-color:#FFFFFF;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_14{color:#000000;background-color:#D9D9D9;font-family:Arial;font-size:10pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_35{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-top:Black 1px Solid;}
.ctl00_Body_MainGridWeb_25{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 2px Solid;}
.ctl00_Body_MainGridWeb_3{border-width:0px;table-layout:fixed;border-collapse:collapse;}
.ctl00_Body_MainGridWeb_7{color:#000000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-right:Black 1px Solid;}
.ctl00_Body_MainGridWeb_39{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;}
.ctl00_Body_MainGridWeb_1{border-width:0px;height:20pt;border-top:Gray 1px Solid;table-layout:fixed;border-collapse:collapse;}
.ctl00_Body_MainGridWeb_0{border-color:Gray;border-width:1px;border-style:Solid;table-layout:fixed;border-collapse:collapse;}
.ctl00_Body_MainGridWeb_28{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:italic;text-decoration:none;}
.ctl00_Body_MainGridWeb_31{color:#FFFFFF;background-color:#808080;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_6{background-color:White;border-color:Gray;border-width:1px;border-style:Solid;font-size:10pt;height:15pt;white-space:nowrap;}
.ctl00_Body_MainGridWeb_20{color:#FFFFFF;background-color:#000000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:#FFFFFF 1px Solid;border-right:#FFFFFF 1px Solid;border-top:#FFFFFF 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_34{color:#000066;background-color:#D3E6F5;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;}
.ctl00_Body_MainGridWeb_24{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 2px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_30{color:#000000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_12{color:#000000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_37{color:#FFFFFF;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-right:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_29{color:#000066;background-color:#D3E6F5;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;}
.ctl00_Body_MainGridWeb_27{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:italic;text-decoration:none;border-left:Black 1px Solid;}
.ctl00_Body_MainGridWeb_36{color:#FFFFFF;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_9{color:#000000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;}
.ctl00_Body_MainGridWeb_26{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_38{color:#FFFFFF;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_18{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:#FFFFFF 1px Solid;}
.ctl00_Body_MainGridWeb_10{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;}
.ctl00_Body_MainGridWeb_5{background-color:Silver;border-color:Gray;border-width:1px;border-style:Solid;font-size:10pt;height:15pt;white-space:nowrap;}
.ctl00_Body_MainGridWeb_11{font-family:Arial;font-size:10pt;}
.ctl00_Body_MainGridWeb_23{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_15{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:#FFFFCC 1px Solid;border-top:Black 1px Solid;border-bottom:#FFFFFF 1px Solid;}
.ctl00_Body_MainGridWeb_22{color:#000000;background-color:#D9D9D9;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}

Still, this is a workaround. Changing all the pages in my application for this workaround is impracticable. It means a lot of changes in the code as it happens a lot…

Hope that you can find a solution for this compatability soon and release a new version that finally solves it.

Thanks in advance.

Hi,


Thanks for your feedback,

We will look into it soon. Once we have any update, we will let you know here.

Thank you.

Any news on this problem? We’re in tight schedule and need a solution for this problem as soon as possible.


Thanks in advance,

Hi,

Will you please try the latest version: Aspose.Cells for GridWeb v2.6.4.2000
and update your acwmain files and share your feedback with us.

We have also added your comment in our database.

Hi. Sorry for the late feedback…


We’re still having the same problem.

Whenever we change panel (using display none / display inline ), we get “Microsoft JScript runtime error: Unknown runtime error” in the same acwmain.js function, when setting innerText. Here’s what we’re sending in styleHTML:

.ctl00_Body_MainGridWeb_33{color:#FFFFFF;background-color:#808080;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_1{border-width:0px;height:20pt;border-top:Gray 1px Solid;table-layout:fixed;border-collapse:collapse;}
.ctl00_Body_MainGridWeb_16{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:#FFFFCC 1px Solid;border-top:Black 1px Solid;border-bottom:#FFFFFF 1px Solid;}
.ctl00_Body_MainGridWeb_23{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_14{color:#000000;background-color:#D9D9D9;font-family:Arial;font-size:10pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_15{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:#FFFFCC 1px Solid;border-top:Black 1px Solid;border-bottom:#FFFFFF 1px Solid;}
.ctl00_Body_MainGridWeb_13{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;}
.ctl00_Body_MainGridWeb_26{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_31{color:#FFFFFF;background-color:#808080;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_20{color:#FFFFFF;background-color:#000000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:#FFFFFF 1px Solid;border-right:#FFFFFF 1px Solid;border-top:#FFFFFF 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_21{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:#FFFFFF 1px Solid;}
.ctl00_Body_MainGridWeb_29{color:#000066;background-color:#D3E6F5;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;}
.ctl00_Body_MainGridWeb_2{border-width:0px;height:100%;width:100%;table-layout:fixed;border-collapse:collapse;}
.ctl00_Body_MainGridWeb_22{color:#000000;background-color:#D9D9D9;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_17{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-top:Black 1px Solid;border-bottom:#FFFFFF 1px Solid;}
.ctl00_Body_MainGridWeb_11{font-family:Arial;font-size:10pt;}
.ctl00_Body_MainGridWeb_27{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:italic;text-decoration:none;border-left:Black 1px Solid;}
.ctl00_Body_MainGridWeb_6{background-color:White;border-color:Gray;border-width:1px;border-style:Solid;font-size:10pt;height:15pt;white-space:nowrap;}
.ctl00_Body_MainGridWeb_9{color:#000000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;}
.ctl00_Body_MainGridWeb_35{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-top:Black 1px Solid;}
.ctl00_Body_MainGridWeb_24{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 2px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_3{border-width:0px;table-layout:fixed;border-collapse:collapse;}
.ctl00_Body_MainGridWeb_5{background-color:Silver;border-color:Gray;border-width:1px;border-style:Solid;font-size:10pt;height:15pt;white-space:nowrap;}
.ctl00_Body_MainGridWeb_36{color:#FFFFFF;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_8{color:#000000;background-color:#D9D9D9;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_7{color:#000000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-right:Black 1px Solid;}
.ctl00_Body_MainGridWeb_25{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 2px Solid;}
.ctl00_Body_MainGridWeb_0{border-color:Gray;border-width:1px;border-style:Solid;table-layout:fixed;border-collapse:collapse;}
.ctl00_Body_MainGridWeb_28{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:italic;text-decoration:none;}
.ctl00_Body_MainGridWeb_30{color:#000000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_38{color:#FFFFFF;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-left:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_34{color:#000066;background-color:#D3E6F5;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;}
.ctl00_Body_MainGridWeb_39{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;}
.ctl00_Body_MainGridWeb_4{border-width:0px;height:100%;border-collapse:collapse;}
.ctl00_Body_MainGridWeb_32{color:#000000;background-color:#FFFFFF;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_19{color:#FFFFFF;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;}
.ctl00_Body_MainGridWeb_37{color:#FFFFFF;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;border-right:Black 1px Solid;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_12{color:#000000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-bottom:Black 1px Solid;}
.ctl00_Body_MainGridWeb_10{color:#000066;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-left:Black 1px Solid;}
.ctl00_Body_MainGridWeb_18{color:#FFFFFF;background-color:#FF0000;font-family:Arial;font-size:8pt;font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;border-right:Black 1px Solid;border-top:Black 1px Solid;border-bottom:#FFFFFF 1px Solid;}

Any thoughts? Hope that you can help us with this soon.

Thanks in advance…

Hi. Any news on this problem? Hope to get a fix soon.


Thanks in advance…

Hi,


I have asked the concerned developer to update on the issue. Once we have any update, we will let you know here.

Thank you.

Hi. Any news?


Thanks in advance…

Hi,


After evaluating your project/application, we found you can disable Ajax, then the web will run well,

I have attached two files in the attached archive for your reference.

Home1.aspx, as compared with the file user supplied , we do following changes:

Removed EnableAJAX="true"

Home1.aspx.cs

Removed this.GridWeb1.EnableAJAX = true;


Please do what is suggested and it will work fine.


Thank you.


Hi.


Yes, I can do as you sugested but then, the whole meaning of using your control is reduced to no meaning at all…

We need to use enableAjax a true so that all formulas that we have on pages execute as soon as the user enters a number, using ajax.

So… removing the use of AJAX is not an option…

Thanks in advance.

Hi,


Please change if(!Page.IsPostBack) segment to the following code:


if (!Page.IsPostBack&&!Request.Url.ToString().Contains("acw_ajax"))


Since the code “EnableAjax=”True””, the webpage will be called by a URL which contains “acw_ajax”, so please skip the URL process, then the page will work well.


Thank you.

Hello,

We still have the same problem.

It only works with EnableAjax="false", but this is not an option for us, since the cells resulting from other cell values are not updated.

Can you provide some other solution, we are on a really tight schedule, and any help would be very much apreciated.

Thanks in advance.

Hi,


Thanks for your feedback,

I have logged it and we will look into it further to response you soon.

Thank you.