Clickable Rows In Datagridview Using Ajax

Nov 21, 2010

I implemented clickable rows in datagrid using ajax. The problem is, when I click the row in the Results page I redirect to another page to view the data. In that page I have an "update" button that I can update the data in the table in the DB and when I click it, I redirect back to the Results page and then click the same row again to view its details, the data isnt updated and its still old data. The thing is, the data is being updated in the table in the DB, its like the page is saving the old data he brought and using it and I dont know how to tell him to bring new data. Here is the code to make clickable rows:

protected void pendingGrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onclick", "return GetDataUsingAJAX(" + e.Row.RowIndex + ",'pending');");
e.Row.Attributes.Add("style", "cursor:hand");
}
}

here is the javascript of Results page:

function GetDataUsingAJAX(row, table) {
obj = new XMLHttpRequest();
if (obj != null) {
obj.onreadystatechange = RedirectToViewDetails;
obj.open("GET", "Results2.aspx?row=" + row + "&table=" + table, true);
obj.send(null);
}
return false;
}

function RedirectToViewDetails() {
if (obj.readyState == 4) {
if (obj.status == 200) {
var retval = obj.responseText.split("&");
window.location = "YellowCardStart.aspx?mode=" + retval[0] + "&cntct=" + retval[1] + "&strtDate=" + retval[2] + "&endDate=" + retval[3] + "&strtTime=" + retval[4] + "&endTime=" + retval[5] + "&tools=" + retval[6] + "&id=" + retval[7] + "&table=" + retval[8] + "&bldng=" + retval[9] + "&loc=" + retval[10] + "&devTool=" + retval[11] + "&cmpny=" + retval[12] + "&phn=" + retval[13] + "&lssApp=" + retval[14] + "&ehsApp=" + retval[15] + "&cmnts=" + retval[16] + "&created=" + retval[17]; }
else {
alert("Error retrieving data!");
}
}
}.............

View 3 Replies


Similar Messages:

Forms Data Controls :: Add 3 Rows To Datagridview Footer?

Nov 2, 2010

I need to add 3 rows to a footer, i did a total but dont know how to add 2 more,

I have a variable credits that i would like to display on the next line and then net the 2 on the 3rd line.

I have looked at properties of the e.Row and was thinking if i could add a table?? Is there a to table method of datagridview? That way i could add the rows?

protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Footer)
{
double totald = Convert.ToDouble(dt.Compute("Sum(Bal)", string.Empty).ToString());
e.Row.Cells[0].Text = "Total";
e.Row.Cells[0].Attributes.Add("align", "left");
e.Row.Cells[2].Text = string.Format("{0:n0}", totald);
e.Row.Cells[2].Attributes.Add("align", "center");
e.Row.
}
}

View 8 Replies

Forms Data Controls :: Paint Some Rows In Datagridview?

Jan 6, 2011

i have table in my database that contain Fname and age for example.

i need to paint in green all age that under 50 and to paint in red all age up to 50

how to to it ?

i'am using asp.net C# on VS2008

View 4 Replies

Forms Data Controls :: Datagridview, Allowing The Number Of Rows To Be Changed?

Jun 10, 2010

I want to allow people visiting my website to have the ability to change the displayed data in a DataGridView from a Dropdown box and have it auto postback. So options are in the dropdown box 10, 20, 30

View 5 Replies

Forms Data Controls :: DatagridView Postback / Cannot Make The Datagridview's Buttonfield Respond?

Feb 17, 2011

I am new to asp.net and was trying to use datagridview in my webform. I was able to bind it to my database but I cannot make the datagridview's buttonfield respond. It seems the grid's SelectedIndexChanged event is not being fired or has issues with postback. Even a very simple statement is not being executed by the program e.g.

protected void grid_SelectedIndexChanged(object sender, EventArgs e)
{
detailsLabel.Text = "asdfasdfsafasddf";
}

It seems the SelectedIndexChanged is not being fired. I have checked my IE and scripting is enabled.

I am using VS 2008 and IE7. Can anyone share a solution on how to solve this issue?

View 7 Replies

AJAX :: Always Visible ControlExtender Clickable

Jan 9, 2013

I can make always visible control clickable ??

That is to say :with a click alwaysvisiblecontrol I should navigate to another page ...

View 1 Replies

AJAX :: Autocompleteextender To Textbox In 3.5 In Datagridview

Mar 24, 2011

can I have an auto extender to my textbox which is in datagridview. I am using it in footer template for inserting a new row to the gridview.

View 1 Replies

AJAX :: Datagridview, Modalpopup And Detailsview?

Dec 30, 2010

this is my first question here.I`m making work a datagridview, modalpopup and detailsview. The logic is, in the datagridview is a linkbutton in each row who calls the detailsview inside of the modalpopup showing some information, and it works fine, the problem is in the datagridview, the propertie AllowPaging is set True and PageSize in 5, and when i`m traing to change the Page of the datagridview it just do it the first time, but don`t work the second time and so on. I traied to debbug this, and this happend when the modalpopup is executing the prerender method. I`m not sure how i can fix thisis my code:

<asp:Content
ID="Content1"
ContentPlaceHolderID="ContentPlaceHolder1"

[code]...

View 3 Replies

AJAX :: How To Use Multiple (rows Of) Buttons In A Listview As A Ok Button In Ajax Modalpopup

Jan 5, 2011

I have the modal popup come up for searching something. Inside the popup (panel) I have a txtbox and a search button. I enter text and hit 'search' and the results are shown in a listview within the popup. Now every row in the list view has a button "Select". I want to click on one of those buttons to select a particular value.

Now on click of the button(within the listview), I tried calling a javascript function and doing $find('mdlPopup').hide(); , which makes the popup dissappear. But somehow the debugger takes me straight to Global.asax.Application_Error() and doesn't even give me a stack trace to see wht the issue is. And over that, the popup looks dissapeared, but the rest of the controls on the page are not enabled back. Strange?

I'm assuming, that the popup doesn't close as intended and it errored out (which took me to Global.asax.Application_Error() ), and is not enabling the rest of the controls in the page.So my question is, how do I assign multiple buttons in a listview to the okbutton (or cancelbutton) of a modalpopup extender?

View 4 Replies

C# - Make First And Last Column Not Clickable?

Oct 19, 2010

I have a table being generated in an ASP.net web app. The table has 4 columns. Currently each cell of each row can be clicked to get more detailed info. However, I do not want the first and the last cell in each row to be clickable. How can I make it so that only the first second and third cell can be clicked?

Below is some of the code (from the .cs file):

if(e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.BackColor = TRADER_BACKCOLOR;
e.Row.Cells[0].Font.Bold = true;
e.Row.Attributes.Add("onmouseover", "style.backgroundColor = 'Silver'");
e.Row.Attributes.Add("onmouseout", "style.backgroundColor = '" + TRADER_HEX + "'");
e.Row.Attributes.Add("onclick", "RowClick(this, '" + e.Row.Cells[0].Text + "');");
From the .aspx file:
function RowClick(caller, id)
{
if(document.getElementById(id).style.display == "block")
{
if(last != "" && parent == id)
{
HideDetailed();
}
document.getElementById(id).style.display = "none";
}
else
{
document.getElementById(id).style.display = "block";
}
}

View 2 Replies

Clickable Items In Datagrid

Jan 4, 2010

I'd like to write a code that would allow a user clicking on a selected item in a datagrid view table (for example a Name from People_datatable) and navigate to another page whit a datagrid of personal data filtered by Name.

View 4 Replies

C# - Asp:Linkbutton Enables But Is Not Clickable?

Nov 2, 2010

I don't know if this is a bug or whatever, but how can I call the event in the code-behind after enabling the linkbutton?

This is my linkbutton:

<asp:LinkButton ID="btnStartImportNow" runat="server" OnClick="btnStartImportNow_Click" Enabled="false">
<div class="css_action_item_enabled" style="float: right;">
<div class="css_action_item_icon_add">
</div>
<span class="css_action_link">
<asp:Label runat="server" ID="lblStartImport">
</asp:Label>
</span>
</div>
</asp:LinkButton>

Now I have a javascript with this rule:

document.getElementById(clientId + "_btnStartImportNow").disabled = false;

Well the button enables, but I cannot click the button..

View 2 Replies

Web Forms :: Linkbutton To Be Clickable?

Jan 26, 2011

I have a simple question that I can't seem to get... I have a linkbutton on my page... I want to make the text to this linkbutton viewable.. however I dont want the linkbutton to be clickable... It should only be clickable if the user is logging in and in the right role... Is there a way to do this outside of enable="false" ? my client does not like the faded text.. they want the text like the rest on the page.

View 18 Replies

Web Forms :: Use Clickable Login With Image

Sep 24, 2010

i want to create a login page with an image and the username, password should be inside the image.

View 2 Replies

Clickable Chart Controls In Asp Application

Apr 27, 2010

I want to have charts in my asp.net application. I found this charting library [URL] Can you tell me if I can have functionality like have a bar chart for months and if you click on a bar, then it shows another bar chart with weeks of the month which was clicked.

View 3 Replies

Web Forms :: Calender Dates Must Be Non Clickable

Jan 19, 2011

I m using Calender control to show holiday list. its DayRender event performing some function. When any user click on any date it w'll give error. so i want all the dates must be non-clickable.

View 3 Replies

Create A List Of Data Clickable?

May 27, 2010

how to make a list of titles of news contained in a database. And in this list, each of the titles when clicked is redirected to a page where you will be able to view the news in full (Title, Body, Author ..).
What I got:

- A database containing a table with the news, every news is associated with an identification code (ex: "ID").

- A page where you will make the listing. (Ex: site / listofnews.aspx)

- I have a page that uses the method "querystring" to know what is the primarykey the news. (Ex: site/shownews.aspx?ID=12345, where "12345" is the primarykey of the news. Once it knows what is the primarykey of the news in the database, it loads each of the fields of the page (news.aspx) with the news, this part is working ok.

- The data is retrieve using the Linq, so I receive a List of "News", the class "News" as ID, Title, Body, Author..

how to make the listing clickable.

In php I used this method (make a list of html links, in each link the href field is changed so that the tag "id" coincides with the news):

//database used is oracle, $stmt is the query, you don´t need to understand how it works.
oci_define_by_name($stmt, "ID", $id);
oci_define_by_name($stmt, "TITLE", $title);
if (!oci_execute($stmt, OCI_DEFAULT)) {........

View 1 Replies

Web Forms :: How To Make An Unclickable Control Clickable

Mar 29, 2010

I have big problem to make this FlashAdRotator clickable to Navigate to an URL when using a Flashfile (.swf).

I wonder if it is possible to do any basic ASP.net embedding of the FlashAdRotator to make the embedded control clickable ? I will pass a URL through Session Variables to the clickevent later to open up an URL so I beleive <a href="index.htm"></a> wont work here.

<cc1:FlashAdRotator
ID="FlashAdRotator1"
runat="server"
Height="320px"
Width="540px"
NavigateUrlField=""
onadcreated="FlashAdRotator1_AdCreated"
/>

View 10 Replies

Web Forms :: How To Make An Array Of Buttons Clickable

Oct 14, 2010

I want to make an array of buttons. What would be the syntax to make the buttons clickable and tell it to do a specific function like copying the data to the system clipboard?

View 2 Replies

C# - Image Clickable Without No Hyperlink Case Surrounded

Jul 16, 2010

How to remove the clickabilty of an image? as you may see, there is no arroung the image. the code of img:

<input name="ui_taskFormControl$ctl03$ctl00$ctl03$ui_BirthPlaceImage" height="20" id="ui_taskFormControl_ctl03_ctl00_ctl03_ui_BirthPlaceImage" type="image" src="SmartPenHandler.ashx?FormId=XYZ&FieldId=BirthPlace" complete="complete"/>

View 2 Replies

Delete And Button Field Not Clickable In GridView

Jul 24, 2013

I have a gridview on my page with autogeneratedeletebutton="true" and containing a button field colum <asp:ButtonField CommandName="Select" Text="Edit" ButtonType="Link"/>.These buttons show up on the page but they are not clickable links so I can't click them. I have similar code elsewhere and it works fine.

View 3 Replies

Web Forms :: Make Area In Drop Down Menu Clickable?

Dec 20, 2010

I'm using the asp.net menu control. It's working great, but I'm trying to figure out how to make the area around the text in the menu clickable? You see, some words in the menu are much longer than others, and I don't like it that the user has to move their mouse to the left to be able to click on the word in the menu just because it is shorter. Is there a way to make the entire menu item clickable? My menus are across the top of the page Left to Right, and then they drop down. And it's in that dropdown menu that the text length varies.

View 3 Replies

How To Send A Clickable Link Which Works In Outlook And Hotmail

Dec 29, 2010

i need to send a clickable link to many people via mail using vb.net .

Dim smtp As New SmtpClient
email = "emailaddress@xyz.org
Dim mm As New MailMessage("test", email)
mm.Subject = "test"
mm.Body = "http://www.mywebsite.org/mypage.aspx" & "<br><br>" & "greetings"
mm.IsBodyHtml = True
smtp.Send(mm)

This code works perfectly when the mail is read with Outlook. People get a clickable link which brings them to the right page. But the same mail read in Hotmail (or any webmail site) provides a non-clickable link.

I also tried with:

mm.Body = "http://www.mywebsite.org/mypage.aspx" & chr(9) & chr(13) & "greetings"
mm.IsBodyHtml = False

but then, i get no clickable link in Outlook.

How can i send a clickable link which works with Outlook and Hotmail?

View 5 Replies

Forms Data Controls :: How To Make A Repeater Clickable

Apr 19, 2010

I have the below code in a user control used at many places in my website.I want the whole control to behave as a hyperlink and redirect to the 'Testimonial page'.How can I accomplish it?

<div id="divRndTesti" class="testimonials-inner" runat="server" >
<asp:Repeater ID="repTesti" runat="server">
<ItemTemplate>
<p><%# Truncate(Eval("TestmlDescription").ToString(), 100, true)%></p>
<span><strong><%#Eval("UserName")%></strong>
<br /><%#Eval("UserState")%>, <%#Eval("UserCntry")%></span>
</ItemTemplate>
</asp:Repeater>
</div>

View 3 Replies

Forms Data Controls :: Make Gridview (3.5) Clickable?

May 21, 2010

How do you make a gridview(asp.net 3.5) clickable? In other words how can I make it so that I can select a row in the grid? In fact click on any row.

View 10 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved