<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="Test_Default" %> | |
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> | |
<!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>Untitled Page</title> | |
</head> | |
<body> | |
<form id="form1" runat="server"> | |
<telerik:RadScriptManager ID="RadScriptManager1" Runat="server" /> | |
<script type="text/javascript" src="mootools-1-11.js"></script> | |
<asp:linkbutton ID="Button1" runat="server" text="Submit" onclick="Button1_Click" /> | |
<telerik:RadGrid ID="grid" runat="server" EnableAjaxSkinRendering="False"> | |
<MasterTableView> | |
<Columns> | |
</Columns> | |
</MasterTableView> | |
</telerik:RadGrid> | |
</form> | |
</body> | |
</html> |
using System; | |
using System.Collections; | |
using System.Web; | |
public partial class Test_Default : System.Web.UI.Page | |
{ | |
protected void Page_Load( object sender, EventArgs e ) | |
{ | |
// EMPTY | |
} | |
protected void Button1_Click( object sender, EventArgs e ) | |
{ | |
// EMPTY | |
} | |
} |
Message: 'Sys$Enum$parse' is undefined Line: 2951 Char: 55 Code: 0 |
URI: |
http://machine/project/ScriptResource.axd?d=uGOaxGkvEePM-XITAS7HdYgdtEC_2h8s3nT0YB4_k4X9r-qiHP2gpiGD--kG1fjE9x_rFUcN0gTBUY4TId2jMQ2&t=4ed2e5c4 |
This is a real issue as the site is heavily dependent upon the filtering functionality.
I have check the web.config references, I have also checked that HTTP compression is not enabled etc.
Any clues? This is starting to drive me crazy!!
Thanks,
Jason
Hi,
My chart has more than one series (the number always changes).
I want to add these series dynamically into my chart (sometimes 2 sometimes 5 series). I tried to use an array but it did not work. How can I add the (changing number) chart series dynamically? and what is the problem with the array? (Please see the code below)
Thanks,
Ervin
Dim rowNumber As Integer = ds.Tables(0).Rows.Count
Dim myChartSeries(rowNumber - 1) As ChartSeries
For index As Integer = 0 To rowNumber - 1
With myChartSeries(index)
.Name = s1
.Appearance.TextAppearance.TextProperties.Color = Color.Blue
.Type = ChartSeriesType.Line
.Appearance.LabelAppearance.Visible = True
.Appearance.PointMark.Dimensions.AutoSize = False
.Appearance.PointMark.Dimensions.Width = 7
.Appearance.PointMark.Dimensions.Height = 7
.Appearance.PointMark.FillStyle.MainColor = Color.Black
.Appearance.PointMark.Visible = True
For index2 As Integer = 0 To 5
Dim mychartSeriesItem As Integer = Int(ds.Tables(0).Rows(0).Item(index2 + 1))
myChartSeries(index2).AddItem(mychartSeriesItem)
Next
End With
chart.AddChartSeries(myChartSeries(index))
Next
chart.DataBind()