or
| <div id="MainDiv"> |
| <telerik:RadAjaxPanel> |
| <div id="MultipageDiv"> -- this div is set to overflow:auto in a stylesheet; |
| <telerik:RadMultiPage> |
| <telerik:RadPageView ID="RadPageViewCustomers" runat="server"> |
| <div id="ViewPageDiv" > |
| <asp:Table ID="Table1" runat="server" Width="800px"> |
| <asp:TableRow> |
| <asp:TableCell> |
| <telerik:RadListBox> |
Any ideas?
'Carry out steps to figure if a each report is invoiced or not.
'If invoiced, the update hyperlink is disabled
Dim number_of_reports As Integer = RadGrid1.Items.Count
For i = 0 To number_of_reports - 1
If RadGrid1.Items(i)("status_column").Text = "Not Invoice" Then
RadGrid1.Items(i)(
"update_column").Enabled = False
RadGrid1.Items(i)(
"update_column").Text = "No"
End If
Next
<telerik:RadChart ID="rcTrendGraph" runat="server"></telerik:RadChart>for (int i = 0; i < strContentIds.Length; i++){strDashContId = strContentIds[i].ToString();if (strDashContId == "TGI1002"){//Bar GraphrcTrendGraph.ChartTitle.TextBlock.Text = "Bar Graph";rcTrendGraph.ChartTitle.Appearance.Position.AlignedPosition=Telerik.Charting.Styles.AlignedPositions.Top;rcTrendGraph.AddChartSeries(legend);legend.Type = Telerik.Charting.ChartSeriesType.Bar;rcTrendGraph.DataSource =ds;rcTrendGraph.DataBind();}else if (strDashContId == "TGI1003"){//Pie GraphrcTrendGraph.ChartTitle.TextBlock.Text = "Pie Graph";rcTrendGraph.ChartTitle.Appearance.Position.AlignedPosition=Telerik.Charting.Styles.AlignedPositions.Top;rcTrendGraph.AddChartSeries(legend);legend.Type = Telerik.Charting.ChartSeriesType.Pie;legend.AddItem(10,"A");legend.AddItem(20,"B");legend.AddItem(30,"C");legend.AddItem(40,"D");}else if (strDashContId == "TGI1001"){//Line GraphrcTrendGraph.ChartTitle.TextBlock.Text = "Line Graph";rcTrendGraph.ChartTitle.Appearance.Position.AlignedPosition=Telerik.Charting.Styles.AlignedPositions.Top;rcTrendGraph.AddChartSeries(legend);legend.Type = Telerik.Charting.ChartSeriesType.Line;legend.AddItem(10,"A");legend.AddItem(20,"B");legend.AddItem(30,"C");legend.AddItem(40,"D");}}strContentIds.Length=2strDashContId =TGI1001strDashContId =TGI1003 strDashContId =TGI1003 and strDashContId =TGI1001 I am getting Pie as strContentIds[1]=TGI1003 after strDashContId =TGI1001 and getting both the charts as Pie Charts only.function FBLogin(sender, args) { FB.login(fb_loggedin, { perms: 'email,publish_stream,offline_access' }); }<telerik:RadButton ID="RadButton1" runat="server" Text="Login" Height="55px" Width="225px" AutoPostBack="false" OnClientClicked="FBLogin"> <Image ImageUrl="~/Images/fb_btn.png" /> </telerik:RadButton>