rgHotels.MasterTableView.InsertItem();
eventArgs.get_gridColumn() This is not the column that has been dragged. How do I get the correct dragged column with it's new position? Paul
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DefaultCS.aspx.cs" Inherits="TelerikNestedGrid.DefaultCS" %><%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/tr/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"> <!-- custom head section --> <!-- end of custom head section --></head><body class="BODY"> <form runat="server" id="mainForm" method="post"> <!-- content start --> <telerik:RadScriptManager ID="RadScriptManager1" runat="server" /> <script language="javascript" type="text/javascript"> function testAlert() { alert("hello"); } </script> <br /> <div style="width: 730px;"> <asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder> <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> </telerik:RadAjaxManager> <br /> </div> <asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="testAlert()"/> <!-- content end --> </form></body></html>using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using Telerik.Web.UI;using System.Data;using System.IO;using System.Data.Odbc;namespace TelerikNestedGrid{ public partial class DefaultCS : System.Web.UI.Page { private void DefineGridStructure() { RadGrid RadGrid1 = new RadGrid(); RadGrid1.ID = "RadGrid1"; RadGrid1.ItemCreated += new GridItemEventHandler(RadGrid1_ItemCreated); //Assignt the DataTable as Source RadGrid1.DataSource = GetTableFromCSV(@"D:\RadGridImport.csv"); ; //If only Bind the Data here, the ImageColumn will not appear. RadGrid1.DataBind(); //Create and Add the new Column GridImageColumn col = new GridImageColumn(); col.ImageUrl= "/images/stift_icon.gif"; GridImageButton btn = new GridImageButton(col); btn.OnClientClick = "testAlert()"; btn.Click += new ImageClickEventHandler(GridButton_Click); RadGrid1.Columns.Add(col); //If i first Bind and then Rebind() here, the ImageColumn is at the Beginning. RadGrid1.Rebind(); this.PlaceHolder1.Controls.Add(RadGrid1); } public void RadGrid1_ItemCreated(object sender, GridItemEventArgs e) { if (e.Item is GridDataItem) { //e.Item.Cells[0].Controls[0].GetType() -> type is usual button and not GridImageButton? Why that? TableCell t = e.Item.Cells[0]; foreach (Control c in t.Controls) { c.GetType(); //(c as ImageButton).OnClientClick = "testAlert()"; (c as Button).OnClientClick = "testAlert()"; (c as Button).Click += new EventHandler(GridButton_Click); (c as Button).Attributes.Add("onclick", "GridButton_Click()"); } } } public void GridButton_Click(object sender, EventArgs e) { Console.WriteLine(); } protected void Page_Init(object source, System.EventArgs e) { DefineGridStructure(); } protected void Page_Load(object sender, EventArgs e) { } private DataTable GetTableFromCSV(string path) { if (!File.Exists(path)) throw new FileNotFoundException(); FileInfo fileInfo = new FileInfo(path); DataTable dataTable = new DataTable(); string connectionString = String.Format("Driver={{Microsoft Text Driver (*.txt; *.csv)}};Dbq={0};", fileInfo.DirectoryName); OdbcConnection connection = new OdbcConnection(connectionString); OdbcDataAdapter da = new OdbcDataAdapter(String.Format("select * from [{0}]", fileInfo.Name), connection); da.Fill(dataTable); return dataTable; } }}Hello :)
I have a Rad grid view, which contain a button in each row
I want to do something with the data key (the primary key ) of the grid when I press a button in some row
can I retrieve the data key for used row to use it in my C# code ?
thank you all :)
I have an application that was given to my by someone else and it's using telerik controls.
the application is originally written in VS2010 framework 4.
when i try to open it on my end, i keep getting errors saying "failed to create designed "Error Creating Control - RadScriptManager1Failed to create designer 'Telerik.Web.UI.RadScriptManager, Telerik.Web.UI, Version=2011.1.519.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4'"
the telerik.web.ui.dll file is in my "bin" folder.
am i missing something? is there a way to get the site to work without having to buy these controls? what do i do?