or
<telerik:RadToolBar runat="server" ID="RadToolBar1" style="overflow:visible;" Skin="Telerik" Width="994px" Height="121px" onbuttonclick="RadToolBar1_ButtonClick"><CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> <Items> <telerik:RadToolBarButton> <ItemTemplate> <div style="padding-left:30px"> <asp:Image ID="imgo" ImageUrl="~/images/Picture3.png" runat="server" /> <asp:Image ID="imgMore" ImageUrl="~/images/Picture5.png" runat="server" /> <asp:TextBox ID="txtSearch" Width="500px" Height="40px" runat="server" /> <asp:ImageButton ID="btnCancel" runat="server" ImageUrl="~/images/Picture11.png" Text="Cancel" /> <asp:ImageButton ID="btnSearch" runat="server" OnClick="btnSearch_Click" Text="Search" ImageUrl="~/images/Picture12.png" /> <telerik:RadToolBarButton runat="server" IsSeparator="true"></telerik:RadToolBarButton> <asp:ImageButton ID="btnAttach" runat="server" ImageUrl="~/images/Picture13.png" Text="Add" /> <asp:ImageButton ID="btnAdd" runat="server" ImageUrl="~/images/Picture8.png" Text="Add" /> <asp:ImageButton ID="btnconfig" runat="server" ImageUrl="~/images/Picture9.png" Text="Config" /> <asp:ImageButton ID="btnCommitChanges" runat="server" ImageUrl="~/images/Save All 2.png" Text="Config" /> <telerik:GridTextBoxColumnEditor ID="textboxc" runat="server"></telerik:GridTextBoxColumnEditor> </div> </ItemTemplate> </telerik:RadToolBarButton> </Items> </telerik:RadToolBar>TextBox txtseach = new TextBox();txtseach = (TextBox)Page.FindControl("txtSearch");
private void ConfigureExcelExport() { //ExportExcel configuration settings //rgPostingBill.MasterTableView.Caption = "PostingNotice Billing Report"; RadGrid1.ExportSettings.FileName = "PostingNotice"; RadGrid1.ExportSettings.IgnorePaging = true; //RadGrid1.ExportSettings.HideStructureColumns = true; RadGrid1.MasterTableView.HierarchyDefaultExpanded = true; RadGrid1.ExportSettings.ExportOnlyData = true; RadGrid1.ExportSettings.OpenInNewWindow = true; } protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e) { if (isExcelExport) { if (e.Item is GridNoRecordsItem) e.Item.Visible = false; if (e.Item is GridCommandItem) e.Item.Visible = false; //if (e.Item is GridNestedViewItem) // e.Item.Cells[0].Visible = false; //if (e.Item is GridDataItem) //{ // GridDataItem item = e.Item as GridDataItem; // foreach (GridColumn col in e.Item.OwnerTableView.RenderColumns) // if (!(col is GridBoundColumn)) // item[col.UniqueName].Visible = false; //} } }
Hi.
I'm have RadGrid with 2 DropDownColumns. Then i need third column with value, contains concatenated text-field(not value-field) from first 2 dropdown columns. How I can do it?

| </form> |
| </body> |
| </ |