Search

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

Matching Posts

  • Re: Call Row_command event from javascript

    Actually I am using Continous scroll for GridView since I have large chunks of data My User does not wnat paging option since data is coming in distracted format http://www.eggheadcafe.com/tutorials/aspnet/b8381915-06d9-4538-b4bb-5ac2a8e73f34/implementing-continuous-s.aspx With continous scroll when the scroll reaches the end of div tag it calls javascript method which adds say 10 rows to the existing Grdiview which is rendered as regular html table This code works fine for Gridview where there is
    Posted to Data Presentation Controls (Forum) by khushi2005 on 11/20/2009
  • How to reflect changes made through Javascript on Server side

    For example I have 10 rows on Gridview on Page Load I click a button and I have added few rows to GridView using Javascrpt Now when I click another button and check the number of rows on Gridview it still shows me the 10 rows How do I reflect the chnages made through Javascript on code behing page Thanks
    Posted to Data Presentation Controls (Forum) by khushi2005 on 11/20/2009
  • Re: Call Row_command event from javascript

    Do you mean something like this sb.Append("<td><asp:ImageButton ID='imgbtnShow' Width='0.5pc' runat='server' ImageUrl='~/Images/sysImages/Action_Add.gif' AlternateText='Show' CommandName='Show' /></td>") Well I tried doing that and rendered html page looks like this <TD jQuery1257782436932="484"> <asp:ImageButton id=imgbtnShow jQuery1257782436932="485" CommandName="Show" AlternateText
    Posted to Data Presentation Controls (Forum) by khushi2005 on 11/9/2009
  • Re: Call Row_command event from javascript

    I did check for the rows that are added through Java Script Row_Command image is never called I have set the debug on Row_command and it never gets called This is the function that adds rows to existing Grdiview through Javascript private string BuildRowsWithImageButton(System.Data.DataTable dt, Int32 aLastRowId) { StringBuilder sb = new StringBuilder(); System.Data.DataRow dr; int jId = 0; if (dt.Rows.Count > 0) { for (int i = 0; i < dt.Rows.Count; i++) { sb.Append("<tr class='View_RowStyle'>"
    Posted to Data Presentation Controls (Forum) by khushi2005 on 11/6/2009
  • Call Row_command event from javascript

    Hi I am adding some rows to the gridview using javascript Now I have a image as 1 of the columns and I can succefully place the image thorugh javascript I have written a row_command event on the server side for image click This does and fetch something from database My question is how do add click event to image when I add rows through javascript so that it call row_command event on server side Thanks
    Posted to Data Presentation Controls (Forum) by khushi2005 on 11/2/2009
  • Re: Call Row_command event from javascript

    I checked view source for _DoPostBack but I do not see anything of that code <td valign="top" style="width:50px;"> <input type="image" name="ctl00$ContentPlaceHolder1$XGrid1$ctl05$imgbtnShow" id="ctl00_ContentPlaceHolder1_XGrid1_ctl05_imgbtnShow" src="../../Images/sysImages/Action_Add.gif" alt="Show" style="width:0.5pc;border-width:0px;" /> This is the Gridview code I am populating the rows at runtime <asp
    Posted to Data Presentation Controls (Forum) by khushi2005 on 11/2/2009
  • Re: Infinite/Continuous Scroll in Gridview

    Well I am adding few rows from ashx file something like this StringBuilder System.Data. { { sb = new StringBuilder (); DataRow dr; if (dt.Rows.Count > 0) for ( int i = 0; i < dt.Rows.Count; i++) // sb.Append("<tr class='tblRow'>"); // sb.Append( dr = dt.Rows[i]; "<tr class='View_RowStyle'>" ); //<td valign="top" style="width:50px;"> // <input type="image" name="ctl00$ContentPlaceHolder1$XGrid1$ctl05
    Posted to Client Side Web Development (Forum) by khushi2005 on 10/30/2009
  • Infinite/Continuous Scroll in Gridview

    http://www.eggheadcafe.com/tutorials/aspnet/b8381915-06d9-4538-b4bb-5ac2a8e73f34/implementing-continuous-s.aspx I am uinsg this site as a reference to implement continous scroll for GridView Everything works fine if there is only text data to be dispplayed in the gridview If I have image as one of the td/columns in grdiview I used this code to do it sb.Append("<td>" + " <input type='image' src= '../../Images/sysImages/Action_Add.gif' alt='Show' style
    Posted to Client Side Web Development (Forum) by khushi2005 on 10/29/2009
    Filed under: scroll gridview
  • Re: GridView Paging with Scrollbars

    how to add slider control paging effect to the Gridview that has datasource added at runtime Thanks
    Posted to ASP.NET AJAX UI (Forum) by khushi2005 on 8/14/2009
  • File Save from Webserver to FileServer

    I am trying to use FileUpload control for my web application I have a situation where I need access to Access file Since my users do not want to browse UNC path I cannot use <input type="text"> Hence I thought of uploading this files to my Folder on Webserver It works on some servers where users/client have permissins but some servers they do not have permissions Hence we decided to upload this file to a fixed location on FileServer where users can access this file how do I do this
    Posted to Getting Started (Forum) by khushi2005 on 7/21/2009
Page 1 of 16 (154 items) 1 2 3 4 5 Next > ... Last »