Search

You searched for the word(s): userid:644633

Matching Posts

  • Re: Freezing the gridview header

    Hi Radha See this post. Fix GridView Header
    Posted to Data Presentation Controls (Forum) by Pushkar on 11/27/2009
    Filed under: fix the headers of a grid view
  • Re: how to retrieve cell values of telkrit radgrid control using javascript?

    Hi Durga <script type="text/javascript"> function RadGrid1_RowDataBound(sender, args) { var radTextBox1 = args.get_item().findControl("RadTextBox1"); radTextBox1.set_value(args.get_dataItem()["TitleOfCourtesy"]); } </script> And refer below link. http://stackoverflow.com/questions/920682/how-to-calculate-radgrid-cell-value-on-client-side
    Posted to Component Discussions (Forum) by Pushkar on 11/24/2009
    Filed under: Telerik RadGridView Client-Side
  • Re: How to reflect changes made through Javascript on Server side

    Hi Khushi. Refer this links. http://realfantasy.wordpress.com/category/callback/
    Posted to Data Presentation Controls (Forum) by Pushkar on 11/23/2009
  • Re: My Application Session Gets Expired During Use.

    Hi Avni Add the following code snippet to the OnInit method on the base page of your application. protected override void OnInit(EventArgs e) { base.OnInit(e); string script = "window.setTimeout(\"alert('Your session expired!');\", " + (Session.Timeout - 1) * 60000 + ")"; this.Page.ClientScript.RegisterStartupScript(this.GetType(), "SessionManager", "<script language=\"javascript\">" + script + "</script>");
    Posted to State Management (Forum) by Pushkar on 11/10/2009
    Filed under: SessionTimeOut
  • Re: code for gridview

    Hi Archana. Follow these links. How to Select Record(s) Using Checkboxes and Delete on Confirmation in GridView Delete multiple rows records in Gridview with checkbox and confirmation CheckBox inside GridView to Delete Record
    Posted to Data Presentation Controls (Forum) by Pushkar on 10/20/2009
  • Re: Adding rows dynamically to gridview

    Hi Sneha. I think u have to change ur requirement. As per knowledge it's not possible to add NewRow at any place in the GridView. You can add row from the footer or header. B'caz your gridview will be bound with some Unique number means Primary Number. Finally when u add the row,In the GridView it will come at the last page last record or first record of first page as per ur sorting order. Hope u understand.
    Posted to Data Presentation Controls (Forum) by Pushkar on 10/20/2009
  • Re: Datagrid Delete Command Disabling

    Hi Shilu. Try this code. CType(DataGrid1.Items[rowindex].Cells[columnindex].Controls(0), Button).Enabled = False Or protected void DataGrid1_ItemDataBound(object sender, DataGridItemEventArgs e) { if ((e.Item.ItemType == ListItemType.Item) || (e.Item.ItemType == ListItemType.AlternatingItem)) { if (conditions) { ((System.Web.UI.WebControls.Button)(e.Item.Cells[0].Controls[0] as Button)).Visible = false; } } }
    Posted to Data Presentation Controls (Forum) by Pushkar on 10/9/2009
    Filed under: DataGrid ButtonColumn
  • Re: Datagrid Delete Command Disabling

    [quote user="shilpa.gururao"] < asp : ButtonColumn ButtonType ="PushButton" CommandName ="Delete" HeaderText ="Delete" Text ="Delete"></ asp : ButtonColumn> [/quote] Hey shilpa hav u tried my code ? IF still not then i think you should try to convert ButtonColumn into TemplateField <asp:TemplateField HeaderText="Delete"> <ItemTemplate> <asp:Button ID="btnDelete" runat="server" Text="Delete"
    Posted to Data Presentation Controls (Forum) by Pushkar on 10/9/2009
  • Re: Datagrid Delete Command Disabling

    Hi Shilpa. <asp:templatecolumn> <itemtemplate> //Put the button code. </itemtemplate> </asp:templatecolumn> Eval - to parse and evaluate a data-binding expression against an object at run time. For the Eval please refer below links. http://msdn.microsoft.com/en-us/library/system.web.ui.databinder.eval.aspx http://weblogs.asp.net/leftslipper/archive/2007/06/29/how-asp-net-databinding-deals-with-eval-and-bind-statements.aspx
    Posted to Data Presentation Controls (Forum) by Pushkar on 10/9/2009
  • Re: google map in asp.net

    Hello Asif. You have to pass your address means St Name,St Number,City,State,ZipCode. See below code. <script type="text/javascript"> var hdnValue = null; var array1 = null; var array2 = null; var rowcount = 0; var NewName; var NewAddress; var NewZip; var NewPhone; var NewHTML; var Newi; var NewLength = 0; var curRow = 0; var map; var geocoder = null; var centerPoint = new GLatLng(40.078071, -101.689453); var normalProj = G_NORMAL_MAP.getProjection(); var centerMarker = null; var
    Posted to Component Discussions (Forum) by Pushkar on 10/7/2009
Page 1 of 109 (1082 items) 1 2 3 4 5 Next > ... Last »