Hi,
Hi All,
Thanks a lot,
we can able to hide or unhide the excel column in Gridweb.?
Kindly advice.
Thanks & Regards,
Gawaskar N.
Hi,
Thanks Amjad... Its working i can able to hide the columns now..Thanks a lot..!
One more clarification, Validation can be done on GridWeb For particular cell (Ex:After loading the Excel Inside the GridWeb particular Cell A5 should be only character if i type number any pop up message should display).?
Is this can be achived in Gridweb?
Please help.
Regards,
Gawaskar.
Hi All,
Please provide the solution as per attached screenshot.
Regards,
Gawaskar.
gawaskar_n:Hi All,
Please provide the solution as per attached screenshot.
Regards,
Gawaskar.
gawaskar_n:One more clarification, Validation can be done on GridWeb For particular cell (Ex:After loading the Excel Inside the GridWeb particular Cell A5 should be only character if i type number any pop up message should display).?
Is this can be achived in Gridweb?
I think you may use Custom Validation type of GridWeb control, for reference see the demo:
//Aspx page
You may write your custom function in JavaScript in the way as below e.g
function myvalidation1(source, value)
{
if(isNaN(value))
return true;
else
return false;
}
...........
//.cs file
// Forces validation.
GridWeb1.ForceValidation = true;
WebWorksheets sheets = GridWeb1.WebWorksheets;
WebCells cells = sheets[0].Cells;
// Custom function
WebCell cell = cells["A5"];
cell.CreateValidation(ValidationType.CustomFunction, true);
cell.Validation.ClientValidationFunction = "myvalidation1";
Thank you.
Hi;
Thanks for using Aspose.Cells for GridWeb.
If you set EnableAJAX=“True” the formula value will be updated after cell value changes.
If you set EnableAJAX=“False” and click the “submit edit result and recalculate all formulas” button which is at the left bottom corner, then the formula value will be updated.
We have checked, Ajax Mode works in all major browsers like IE, Chrome, Safari, Firefox etc.
Hi,
We are using the license version upto 10 march 2011.So could you please tell us what is the latest version and what are the changes has been made against to that and location of the updated version.
Regards,
Gawaskar
Hi,
Hi,
Thnaks for your early response!!. As per your suggestion I implimented the code for formula excecute of excel.But it's taking too much time for calculating the values inside the gridweb. I had implimented the ajax enabled code for this. Could you please provide any solution for this.It's very urgent.
Please find attach error message for your reference.
After putting the below code the processing time is faster but autometic formula is not calculating.
pls find the below code :
Grid.WebWorksheets.ImportExcelFile(@"C:\TestOutput.xlsm");
Grid.EnableAJAX = true;
Grid.EnableClientColumnOperations = false;
Grid.EnableClientFreeze = false;
Grid.EnableClientMergeOperations = false;
Grid.EnableClientRowOperations = false;
Grid.EnableStyleDialogbox = false;
Grid.WebWorksheets.RunAllFormulas();
could you please suggest us same time what other gridweb parameters needs to be changed ?
Regards,
Gawaskar
Hi,
Hi,
Attached herewith the AutomaticFormulaTest project.Please find it and do the needful.As provided latest version aspose dll for .net on previous post but it is also not supporting for automatic formula or somewhere I miss out to set the parameter of gridweb.
Awaitng your early response.
Regards,
Gawaskar
Hi,
Hi,
Thanks for creating a ticket with an id: "CELLSNET-41194" for our issue.
When can i expect this issue will get resolved?
Once this issue gets resolved kindly update at the earliest and provide the latest dll.
Thanks & Regards,
Gawaskar.
Hi,
Hi,
Thnaks !!
We are having some data validation in excel file itself. So after importing the file into aspose gridweb can the data validation would be worked out or not ?
Regards,
Gawaskar
Hi,
Hi Team,