Client side events are not recognized

Hi,

I am totally new to Aspose.Grid control.

I a using your evaluation version for visual studio 2005 with asp.net

Your sample programs are working fine on my machine.

But when I tried to create a very basic program (I have just added Gridweb on my aspx page , then checked Editmode that is ‘true’.

) and executed that , displayed grid is not able to recognize any client side event.

Even though editMode is true I am not able to type anything in any cell from grid.

Crosses are being displayed on buttons for save,undo,pagination…

Even When I clicked on EvaluationCopyrigtSheet button I am not getting that sheet.

What I have observed is client side events are not recognized by program.

In IE its not showing any JavaScript error.

But in mozilla its showing couple of JavaScript errors like commonbehav is not defined. , this.gobj has no properties.

How to overcome this problem?

Thanks,

Hi,

Thanks for considering Aspose.

Well, your problem is possibly caused by using FILE mode website in VS 2005. Please try to use HTTP mode website.

At FILE MODE, you should add some config settings to the web.confg

add this config section to the web.config:

<appSettings>
<add key="aspose.grid.web.agw_client_path" value="http://localhost/agw_client/" />
<add key="aspose.grid.web.force_script_path" value="true" />
</appSettings>

Note: This config prevent the control from using embedded client resource(images, scripts, etc.). And this config will only take effect with LICENSED controls.

For more information, please check these links:

Thank you.