or
<telerik:RadChart ID="RadChart2" runat="server" DefaultType="Pie" OnItemDataBound="RadChart2_ItemDataBound" DataSourceID="SqlDataSourceBusArea" Skin="Office2007" IntelligentLabelsEnabled="True" AutoLayout="True" Height="275px" > <Appearance> <Border Visible="False"></Border> </Appearance> <Series> <telerik:ChartSeries Name="sum_area" Type="Pie" DataYColumn="bu_area" DefaultLabelValue="#Y{N0} (#%)"> <Appearance ShowLabels="true" LegendDisplayMode="ItemLabels"> <FillStyle MainColor="69, 115, 167" FillType="Solid"> </FillStyle> <TextAppearance TextProperties-Color="Black" TextProperties-Font="Arial, 9pt"> </TextAppearance> <Border Color="69, 115, 167"></Border> </Appearance> </telerik:ChartSeries> </Series> <Legend> <Appearance Dimensions-Margins="0px, 0px, 0px, 0px" Dimensions-Paddings="0px, 10px, 0px, 3px" Dimensions-AutoSize="True" Dimensions-Height="165px" Dimensions-Width="85px"> <ItemTextAppearance TextProperties-Color="Black" AutoTextWrap="False"> </ItemTextAppearance> <ItemMarkerAppearance Figure="Square"> </ItemMarkerAppearance> <Border Visible="false" /> </Appearance> </Legend> <PlotArea> <Appearance Dimensions-Margins="0px, 0px, 0px, 0px" SeriesPalette="Vista" Dimensions-Height="275px" Dimensions-Paddings="0px, 0px, 0px, 0px"> <FillStyle MainColor="" FillType="Solid"> </FillStyle> <Border Visible="False" /> </Appearance> </PlotArea> <ChartTitle Visible="false"> <Appearance Visible="false"></Appearance> </ChartTitle> </telerik:RadChart><tr><td>Attachment(s)</td><td class="btnUpload"> <telerik:radupload id="ruImage" runat="server" controlobjectsvisibility="RemoveButtons, AddButton" maxfilesize="5120000" > <localization add="Add image" /> </telerik:radupload> </td></tr> </asp:panel> <asp:panel id="pnlMessageResult" runat="server"> <tr> <td colspan="2"> <asp:label id="lblMessageNote" runat="server" forecolor="Black" /> </td> </tr> </asp:panel> <tr> <td colspan="2"> <span class="btnAccept"> <asp:linkbutton id="lbSend" runat="server" text="Send" onclick="lbSend_Click" /></span> <span class="btnReject"> <asp:linkbutton id="lbContactCancel" runat="server" text="Close" onclick="lbContactCancel_Click" /></span> </td> </tr> </table> </contenttemplate> </asp:updatepanel> if (ruImage.UploadedFiles.Count > 0) { UploadAttachment(thread.MessageThreadId); } MessageThreadController.ADD(thread); pnlMessageResult.Visible = true; pnlMessage.Visible = false; lbSend.Visible = false; } else { throw new Exception("Upload validation failed"); } } catch (Exception ex) { validationShow(ex.Message, "Missing fields."); }}protected void validationShow(string message, string title){ RadValidationManager.RadAlert(message, 300, 40, title, "alertCallBackFn");}RadGrid grid = new RadGrid(); grid.NeedDataSource += new GridNeedDataSourceEventHandler(grid_NeedDataSource); grid.ID = "RadGrid" + counter.ToString(); grid.AllowSorting = true; grid.ExportSettings.ExportOnlyData = true; grid.ExportSettings.IgnorePaging = true; grid.ExportSettings.OpenInNewWindow = true; Page.Controls.Add(grid); grid.MasterTableView.ExportToExcel(); lblMessage.Text= "please wait.. i am creating your excel workbook...";function RowSelected()
{
var grid = $find("<%=CandidatesGrid.ClientID %>");
var MasterTable = grid.get_masterTableView();
var IDArray = new Array(MasterTable.get_selectedItems().length);
for (var i = 0; i < MasterTable.get_selectedItems().length; i++)
{
alert(MasterTable.get_selectedItems()[i]);
IDArray[i] = MasterTable.get_selectedItems()[i]._itemIndexHierarchical;
}
__doPostBack( "ctl00_ContentPlaceHolder_CandidatesGrid", IDArray );
}