I am using Ultimate 2010 Vol 3 pakage but when i started using webgrid controls on my Web application and browsing on internet explorer it gives javascript error like "Microsoft JScript runtime error" etc can anyone help me how to resolve this as i am not able to develop my application without resolving this problem.
Hello tegadmin, Go Infragistics website -> My IG -> My keys & Downloads.Login with your username and password. Click on NetAdvantage and select Product Name, scroll down and select Service Release. Currently latest service release is 10.3.20103.2120
Hi Dave,
Whatever was in my account i downloaded, but i have no idea whether it is the latest version, can you please guide me to get the latest version.
Subrat
Hi tegadmin,
If you're using IE 9, you'll need to make sure you're running the latest Service Release for 10.3 for it to be fully supported. Otherwise you can have problems.
thanks,Dave
Hi there there is typo error IE(, it is IE9
Java script errot comes the moment i browse it using IE(
I have already attched a screen shot for the same and please find the the simple code... in my view it is not suuporting IE9 there is nothing in the code but still please see the code as below:
using
System;
System.Collections.Generic;
System.Linq;
System.Web;
System.Web.UI;
System.Web.UI.WebControls;
System.Data;
public
Page
{
e)
(!IsPostBack)
table = GetTable();
//WebDataGrid1.DataSource = table;
//WebDataGrid1.DataBind();
}
GetTable()
//
// Here we create a DataTable with four columns.
();
table.Columns.Add(
));
// Here we add five DataRows.
table.Rows.Add(25,
.Now);
table.Rows.Add(50,
table.Rows.Add(10,
table.Rows.Add(21,
table.Rows.Add(100,
table;
<%
@ Page Language="C#" AutoEventWireup="true" CodeFile="test_grid.aspx.cs" Inherits="test_grid" %>
@ Register Assembly="Infragistics2.Web.v10.3, Version=10.3.20103.1013, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"
Namespace="Infragistics.Web.UI.GridControls" TagPrefix="ig" %>
@ Register assembly="Infragistics2.Web.v10.3, Version=10.3.20103.1013, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI" tagprefix="ig" %>
@ Register assembly="Infragistics2.WebUI.WebScheduleDataProvider.v10.3, Version=10.3.20103.1013, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.WebUI.Data" tagprefix="ig_scheduledata" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
head runat="server">
<title></title>
</
head>
body>
<form id="form1" runat="server">
<div>
<ig:WebDataGrid ID="WebDataGrid1" runat="server" Height="100%" Width="100%"
AutoGenerateColumns="False" DataSourceID="SqlDataSource1" >
<Columns>
<ig:BoundDataField DataFieldName="Week_of" Key="Week_of">
<Header Text="Week_of" />
</ig:BoundDataField>
<ig:BoundDataField DataFieldName="Year" Key="Year">
<Header Text="Year" />
<ig:BoundDataField DataFieldName="GA_TV_Spend" Key="GA_TV_Spend">
<Header Text="GA_TV_Spend" />
<ig:BoundDataField DataFieldName="GA_Cable_Spend" Key="GA_Cable_Spend">
<Header Text="GA_Cable_Spend" />
<ig:BoundDataField DataFieldName="GA_Network_Spend" Key="GA_Network_Spend">
<Header Text="GA_Network_Spend" />
</Columns>
<Behaviors>
<ig:EditingCore>
<ig:CellEditing>
</ig:CellEditing>
<ig:RowAdding>
</ig:RowAdding>
<ig:RowDeleting />
<ig:RowEditingTemplate>
</ig:RowEditingTemplate>
</Behaviors>
</ig:EditingCore>
<ig:Selection CellClickAction="Row" RowSelectType="Single">
</ig:Selection>
<ig:RowSelectors>
</ig:RowSelectors>
<ig:Sorting>
</ig:Sorting>
<ig:Filtering>
</ig:Filtering>
</ig:WebDataGrid>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:Weightwatcher2008ConnectionString %>"
SelectCommand="SELECT [Week of] AS Week_of, [Year], [GA TV Spend] AS GA_TV_Spend, [GA Cable Spend] AS GA_Cable_Spend, [GA Network Spend] AS GA_Network_Spend FROM [WWM]">
</asp:SqlDataSource>
</div>
</form>
html>