Pass ID From GridView Row To JavaScript Function?

Sep 3, 2010

The first commented line below is working with a hardcoded ApplicantId, and all I need is to make it work by passing the current ApplicantId column on the same gridrow.

I've tried for many days now, and something like the second commented line does not work for me.

<asp:GridView ID="GridView1" runat="server" AllowPaging="True"
DataKeyNames="ApplicantID" >
<Columns>
<asp:TemplateField HeaderText="Select">
<ItemTemplate>
<asp:CheckBox ID="CheckBox1" runat="server" />
</ItemTemplate>
</asp:TemplateField>
<!-- works -->
<asp:HyperLinkField NavigateUrl="javascript:popUp(3)" Text="Select" Target="_parent"/>
<!-- doesn't work -->
<asp:HyperLinkField NavigateUrl='"javascript:popUp("<%# + DataBinder.Eval(GridView1.DataItem,"ApplicantId") %> + ")"' Text="View" />
</Columns>
</asp:GridView>

View 1 Replies


Similar Messages:

Pass Eval As Javascript Function Parameter In Gridview?

Jun 25, 2010

I have the following:

<EditItemTemplate>
<asp:Button ID="wrqst_need_ind_btn" runat="server" Text = "Create WR"
onClientClick="javascript:popUp('popup_createWR.aspx')"
CommandArgument='<%# Eval("dvc_nm") + "|" + Eval("data_orgtn_yr") %>'/>
</EditItemTemplate>

I want to pass in as two additional params the Eval("dvc_nm") and Eval("data_orgtn_yr") to the popup function.

UPDATE:

I tried by removing the single quotes from insode the <% %> tags. Which gave me this:

onClientClick='<%# "javascript:popUp(popup_createWR.aspx," + Eval("dvc_nm") + "," + Eval("data_orgtn_yr") + ")" %>'

which complied, but when I clicked the button I did not get a pop up, the page just posted back and reloaded and said errors on page, but no popup...

View 2 Replies

Data Controls :: Pass EVAL Value To JavaScript Function From GridView

May 7, 2015

How do I pass Hidden Variable to javacript function on GridView hyperlink click.Below is the code used

<asp:GridView ID="gridMicroscopicCode" runat="server" ...
<ItemTemplate>
<table id="Table2" cellpadding="0" style="border-width: 0px; width: 100%;" class="tableBorder" runat="server">
<tr class="botborder1">
<td style="width: 25%;">
<input id="Hidden1" runat="server" value='<%# Bind("preferenceid")%>' type="hidden" />
<asp:HyperLink ID="hypMicroscopicPopUpEdit" runat="server"
Target="_self" NavigateUrl="javascript: EncryptDataFunc('VAAddEditMicroscopic.aspx?editoption=yes&queryprefid=' + <%# Hidden1.value %>);">
</asp:HyperLink>

View 1 Replies

Data Controls :: Pass Multiple Eval Values To JavaScript Function Inside GridView

May 7, 2015

I want to pass hidden variable to javascript from href. Below is the code used

<input runat="server" id="hidOrganizationId" type="hidden" value="" />
<ul class="gloMenu">
<li id="liOrg" runat="server">
<a href="javascript: DataEncryption('../Admin/DetailPage.aspx?OrganizationId=' + hidOrganizationId)">
<b>Ordering Facility</b>
</a>
</li>

View 1 Replies

C# - Pass Value To Javascript Function ?

Jul 11, 2010

I have this code

<asp:GridView ID="gvCentersList" runat="server" AutoGenerateColumns="False"
DataKeyNames="CenterID" DataSourceID="SqlDataSource1" CssClass="gv-classic">
<Columns>
<asp:TemplateField HeaderText="">
<ItemTemplate>
<asp:CheckBox ID="GridCheckBox" runat="server" onclick="javascript:func1150(this,<%#response.write(CenterID)%>);" />
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="CenterID" HeaderText="CenterID" SortExpression="CenterID" />
<asp:BoundField DataField="CenterName" HeaderText="CenterName" SortExpression="CenterName" />
</Columns></asp:GridView><asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:MyConnectionString %>" SelectCommand="SELECT ROW_NUMBER() OVER (ORDER BY CityName ASC) AS ROWID, * FROM [CentersList]"></asp:SqlDataSource>

my question in this line

onclick="javascript:func1150(this,<%=CenterID%>);"

how can I pass the CenterID to the func1150 ?

View 2 Replies

Pass Javascript Value To Function?

Jan 3, 2011

the question says it all : i have a linkbutton to which i pass through CommandArgument a value and i need that value to be a javascript value.Edit : here is my linkbutton tag :

< asp:linkbutton id="prevBut"
runat="server" OnCommand="load_com"
CommandArgument=to_place_javascript_string

[code]...

View 3 Replies

Pass Xpath Value In Javascript Function?

Apr 5, 2011

here my code that gives error-

OnClientClick='javascript:DragRevId(<%# XPath("ReservationId") %>);return false;'

View 1 Replies

Web Forms :: Pass Name Of The Textbox Control To Javascript Function

Dec 22, 2010

pass name of the textbox Control to javascript function

[Code]....

<script
type="text/javascript"
language="javascript">
var sum = 3;
var textboxObj,ObjName;
function validate(textboxObj,ObjName) {
alert('Hello');
var arrayOfObjects = document.getElementsByName(ObjName);
alert(arrayOfObjects.length);
for (var i = 0; I < arrayOfObjects.length;i++) {
alert('Inside for loop');............................

View 9 Replies

Pass Parameter As Text To JavaScript Function From Code Behind

Mar 23, 2010

Basically, I have a gridview that is opened in a new window from the parent window. It has a bunch of records with a view button to view the details of each record (which stays in the same newly opened window). I have a calendar in the parent window that accepts a Date querystring parameter to set the current date on the calendar at page load. I'm just trying to refresh the calendar in the parent window to match the date of the label in the newly opened window. All the code below is in the newly opened window. The .Net code-behind below refers to when that view button is clicked and everything is populated. At the end, I call the js to refresh the parent window and pass the value of the LabelScheduleDate as the querystring parameter. Now the label comes through as '03/25/2010' in the code-behind, but when I pass it to the js, it comes through as '0.00005970149253731343' in the end querystring. I'm not really sure what is making the value change, and I want to pass it as just text. Do I need to pass it as a string object? I tried but I don't think I was doing it right.

JavaScript Function
function RefreshParent(inputDate) {
window.opener.location = window.opener.location + "?Date=" + inputDate;
}
.NET Code-Behind
Protected Sub RadGridOnlineRequests_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGridOnlineRequests.ItemCommand
If e.CommandName = "ViewOnlineRequest" Then
' populates LabelScheduleDate among other controls values
ScriptManager.RegisterStartupScript( _
Me, Me.GetType(), "clientScript", "RefreshParent(" & LabelScheduleDate.Text & ");", True)
End If
End Sub

View 1 Replies

Web Forms :: Call Javascript Function - Can't Pass The 2 Argument

Jan 19, 2010

in aspx:

function checkFunction(no,name){
}

in cs:

string test_name ="hello";
StringBuilder Strname=new StringBuilder();
Strname.AppendLine("<td ><input type=checkbox onclick='checkFunction("+no+","+test_name+");' runat='server' name='checkbox_name' value='XX'</td>");

when i call the checkFunction(), i can't pass the 2 argument as there is error.

View 3 Replies

Javascript - How To Pass A Value From The Serverside Page To A Function In .JS File

Jul 30, 2010

I have to pass a string value from the server side page (.aspx.cs) to a function in .JS page. I need to call the function in JS page from server side page along with string as a parameter.

View 1 Replies

Javascript - Ajax Call Pass Parameters To Function?

Feb 7, 2011

What is wrong with this code? I am trying to pass parameters to a WCF function. I couldn't get this to work. I am getting Ajax error.

$.ajax({
url: applicationPath + "/Test.svc/GetData",
type: "POST",
dataType: "json",
data: '{GId":' + sender.get_value() + '"GName":' + sender.get_text() + '"mId":' + testId + '}',
contentType: "application/json; charset=utf-8",
success: function(result)
{
//trying to fill combobox here
},
});

View 1 Replies

Pass An Anonymous Array Of Strings To A JavaScript Function?

Apr 5, 2010

I want to pass to an array of controls' IDs to a javascript script function so it will switch control's enable state.

For example, in C# it would be like this:

func(false, new[] { "Control1", "Control2", "Control3" });

In that function I want to find corresponding controls and disable/enable them. For one control I do this next way:

<script type="text/javascript" language="javascript">
function switchControls(value, arr) {
for (var n = 0; n < array.length; n++)
document.getElementById([n]).disabled = value;
}
</script>
<asp:CheckBox runat="server"
onclick="switchControls(this.checked,
[
'<%= Control1.ClientID %>',
'<%= Control2.ClientID %>'
])"
Text="Take?" />

How to implement this properly? Have I to use jQuery?

View 3 Replies

Web Forms :: Pass Variable As Html Control Through To Javascript Function

Jan 24, 2011

I have a function that gets the position of a control.

[Code]....

All the function needs is an htmlcontrol being fed to it as the parameter (elemRef). I can declare a variable in Javascript of the same content page but different function and pass the parameter successfullly getting returned values. For example, if I have the following function:

function (getPosition)
{ var txtBox1 = document.getElemendById('<%=txtBox1.ClientID %>');
getPos(txtBox1);
}

I will get the coordinates of the control txtBox1. But how can I accomplish this if I am calling this function from a javascript function or codebehind of the Master Page, or codebehind of the same content Page.

View 4 Replies

Web Forms :: Using Javascript, Call One Function From Another, Pass A Variable That Represents?

Jan 20, 2011

I have a variable created to manipulate a contorl on a page:

var pnl= document.getElementById('<%=pnl1.ClientID %>');

[Code]....
[Code]....

View 1 Replies

How To Pass JavaScript Function As A Parameter In The Route Values Of Ajax Actionlink

Apr 20, 2010

I need to pass javascript function as a parameter value to the ajax actionlink in asp.net mvc app. how can we achieve this?

View 1 Replies

JQuery :: How To Pass TextBoxs Value In Repeater Control In JavaScript Function On Click Of Button

Jan 25, 2011

In a repeater control there is TextBox and corresponding to each TextBox there is Button control.On click of Button how can i pass TextBox's text that user has just entered ?

Below is the code:

[Code]....

Means on click of each Button how to pass there respective TextBox's data to a javascript function ?

View 17 Replies

Pass GridView Row Data To Code Behind Function?

Sep 17, 2010

I simply want to pass the AccountName field to the GridView1_RowCommand function (or something else). I get nothing now.

[Code]....

View 10 Replies

AJAX :: JavaScript Function To Pass Value From MasterPage.aspx To Default.aspx And Then Refresh UpdatePanel

Feb 26, 2011

For example, I have master page MyMasterPage.aspx and content page MyDefault.aspx. I have many UpdatePanels at MyMaterPage.aspx, and also I have many UpdatePanels at MyDefault.aspx.

[code]....

I want JavaScript functionClickMenu(this) at input button [id="ButtonMaster1" @ MyMasterPage.aspx] pass its value ["Menu-1"] into text box [id="TextBoxDefault1" @ MyDefault.aspx], and then performing update / doing post-back to server ONLY FOR UpdatePanelDefault1.

I am looking forward an example code for JavaScript functionClickMenu(this).

View 4 Replies

C# - Pass Model Values As Javascript Function Parameters From Inside Mvc Html Helper Such A Html.Radio?

Jul 20, 2010

I think I need to drop in some escape characters, but I'm not quite sure where. Here is the javascript function I'm attempting to call:

function setData(associateValue, reviewDateValue) {
var associate = document.getElementById("Associate");
var reviewDate = document.getElementById("ReviewDate");
associate.value = associateValue;
reviewDate.value = reviewDateValue;
}

Here is the asp .net mvc line where I'm attempting to create a Radio button with a click event that calls the above function and passes data from the model as javascript parameter values.

<%= Html.RadioButton("Selected", item.Selected, new { onClick="setData('<%=item.Associate%>','<%=item.ReviewDate%>' )" } )%>

The above throws a bunch of compile issues and doesn't work. A call such as the following does call the javascript, but doesn't get the data from the model.

<%= Html.RadioButton("Selected", item.Selected, new { onClick="setData('item.Associate','item.ReviewDate' )" } )%>
<%= Html.RadioButton("Selected", item.Selected, new { onClick="setData('item.Associate','item.ReviewDate' )" } )%>
<% String functionCall = String.Format("setData('{0}','{1}')", Html.Encode(item.Associate), Html.Encode(item.ReviewDate )) ; %>
<%= Html.RadioButton("Selected", item.Selected, new { onClick=functionCall } )%>

View 2 Replies

Forms Data Controls :: Pass Function As Parameter To Show In Gridview?

Sep 4, 2010

I have one common Data Access function which returns output as datasetwhich is as below

Public
Shared
Function ExecuteDataSet(ByVal sql

[code]...

View 5 Replies

Web Forms :: Getting Error Calling Javascript Function From Another Javascript Function

Jan 3, 2011

Getting error calling Javsscript function from another Javascript function

[Code]....

View 4 Replies

How To Send Gridview Row Object To Javascript Function

Jul 30, 2010

I have a grid view control on my aspx page.

i have an input button in Template filed , i m calling one java script function.

I want to send Gridview row object so that i can come to know which it has been clicked.

want to play with grid view row in java script function.

View 2 Replies

C# - How To Call Javascript Function In Item Template When Using Gridview

Jul 28, 2010

I am trying to call a javascript function which will set forecolor and backcolor of a control when the control is loaded

But this function is not raising.

[Code]....

View 3 Replies

Gridview ItemTemplate OnClientClick Javascript Function With DataItem Value As Parameter?

Aug 13, 2010

I have a button inside my <ItemTemplate> in GridView and I want to call a javascript function on the OnClientClick of that button passing the DataItem value as a parameter of the javascript function

[code]....

If I will not put a parameter in CreateEditAddess() this works well but I need the parameter.

I know I can put the OnClientClick event value in OnRowDataBound event of the gridview but I don't want to put it in CodeBehind. It seems like the server tag is not parsed correctly.

View 1 Replies







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