Hi,everyone ,I am a newbie to ajax ,just have some problem in using RagGrid's drapdrop function.
I created a new radgrid, then setting the attribute as below:
<Telerik:RadGrid ID="grid1" runat="server">
<ClientSettings AllowRowsDragDrop="true">
<Selecting AllowRowSelect="true" EnableDragToSelectRows="true" />
</ClientSettings>
</Telerik:RadGrid>
then I give the datasource in code page as below:
datasource = getDatasource();
I created a new radgrid, then setting the attribute as below:
<Telerik:RadGrid ID="grid1" runat="server">
<ClientSettings AllowRowsDragDrop="true">
<Selecting AllowRowSelect="true" EnableDragToSelectRows="true" />
</ClientSettings>
</Telerik:RadGrid>
then I give the datasource in code page as below:
datasource = getDatasource();
this.grid1.DataSource = datasource;
this.grid1.DataBind();
but when I ran the application in firefox 2,grid shows right infomation but I cannnot drag and select row, there is 2 error showed in firefox,
Sys is not defined
Sys.Application.initialize();
Sys is not defined
Sys is not defined
Sys.WebForms.PageRequestManager._initialize('ScriptManager1', document.getElemen...
if running in ie7, it gives runtime error ,still Sys not defined.
Anyone have idea about it? coz I am totally new to javascript, so such error infomation totally make no sense! thank you !