Using Jquery .data() Assignment In C# Loop?

Mar 17, 2011

I'm using asp.net list control that creates a table with <div> elements that have a picture thumbnail, and when the user clicks on the div and it calls Ajax method and populates a shared dialog with correct information, and then shows it to the user. In order to do this the div needs to know the item id associated with it, so it can do the db lookup.

how do you dynamically store data to a div item in a list view loop.

so something like

<listControl>
<ItemTemplate>
< div>
stuff
thisdiv.data(<% Eval(id) %>); // <-unsure about this part
</div>
</ItemTemplate>
</listControl>

View 2 Replies


Similar Messages:

Loop Through Table Cells With JQuery And Send The Data To Database?

Feb 26, 2010

What's the best method for looping through a table, grabbing all the data in the cells, but skipping the <th>? Do I put the data in an array?

View 1 Replies

JQuery :: Use Selectors Rather Than Using A Loop

Nov 24, 2010

Ok heres the scenario: I have a table with many rows in it. Each row has a checkbox in one cell, and a span in another cell. What I want to do in my jquery is to go through the table and find each row where the checkbox is checked, and then store the value of the span in an array. I thought you might be able to do it as a selector rather than using a loop. I tried this but it didn't work

$('.cbox').is(':checked').parent().parent().children('.id-text').val();
$('res-table').find('tr')

It doesn't look very much like it would work though, and funnily enough it didn't So can I do this without using a loop?

View 2 Replies

C# - Does The Assignment Of _custName Need To Make Any Request To The Database

Jan 28, 2010

I want to make my queries better but have been un-able to find a resource out there which lays out when a query is shipped of to the db.

DBContext db = new DBContext();
Order _order = (from o in db
where o.OrderID == "qwerty-asdf-xcvb"
select o).FirstOrDefault();
String _custName = _order.Customer.Name +" "+_order.Customer.Surname;

Does the assignment of _custName need to make any request to the database?

View 2 Replies

Web Forms :: Composite Control Attribute Assignment?

Mar 29, 2010

I have got a composite control and i would like to dictate which attribute/property is assigned to the control first from the markup?example in the aspx file:

<MM:MyControl ID="" runat="server" ViewType="normal" BaseType="RealBase"></MM:MyControl>

when the control gets created from the mark-up above, ViewType will be assigned first, Which is what I do not want, I would like RealBase to be assigned first under all circumstances. This control is to be users by other developers so I cannot just switch the order.

View 1 Replies

JQuery :: Loop Through Dynamically Created Controls?

Oct 15, 2010

I'm trying to use the following loop to loop through dynamically created controls on my web form:

for(x = 0; x <= count; x++) {
Stmt += $("#DDLColumns" + x).val();
switch($("#DDLConditional" + x).val()) {

[code]...

View 1 Replies

Change The Default Assignment Of Field In TreeView Control?

Jan 26, 2010

I have this code setup currently:

TreeView tree;
TreeNodeBinding treeNodeBinding = new TreeNodeBinding();
treeNodeBinding.TextField = "Name";
treeNodeBinding.DataMember = "Address";
treeNodeBinding.ValueField = "Zip";
treeNodeBinding.ToolTipField = "FileName1";
tree.DataBindings.Add(treeNodeBinding);
tree.DataSourceID = "Customers";
tree.DataBind();

The datasource (XML) may or may not have an optional attribute called IsPremium. If it exists, then I have to add custom business logic that determines what the treeNodeBinding.ToolTipField is going to be. The custom business logic will generate a string which needs to be set as the value of the ToolTipField.

View 1 Replies

JQuery Validation Plugin - Using Validator.addMethod In Loop?

Apr 29, 2010

I have a good number of regular expressions used for validation. Instead of manually typing in many addMethods for each regex, I tried using a loop. I have the below simulated struct to hold the regex name, RegExp object and validation message.

function RegExs(exprName, expr, exprVM) {
this.exprName = exprName;
this.expr = expr;
this.exprVM = exprVM;
}.......

View 1 Replies

Web Forms :: Unable To Change Textbox Values After Manual Assignment?

Sep 21, 2010

In my webapp, I have a DropDownList_OnSelectedIndexChanged that assigns values for a number of <asp:textbox'es depending on which entry is selected...

public void ModifyProjectIDBox_SelectedIndexChanged(object sender, EventArgs e)
{
int tempJobID = Get_Selected_Report();
dbCommandString = "SELECT Name, Address, State, Awarded, StartDate, EndDate, HomeLocal FROM dbo.ProjectInfo WHERE ProjID = " + tempJobID;
dbComm.CommandText = dbCommandString;
dbConn.Open();
dbReader = dbComm.ExecuteReader();
dbReader.Read();
ModifyProjectNameBox.Text = dbReader[0].ToString();
ModifyProjectAddrBox.Text = dbReader[1].ToString();
ModifyProjectStateBox.Text = dbReader[2].ToString();
ModifyAwardedBox.Text = dbReader[3].ToString();
ModifyStartDateTextBox.Text = dbReader[4].ToString();
ModifyEndDateTextBox.Text = dbReader[5].ToString();
public void ModifyProjectIDBox_SelectedIndexChanged(object sender, EventArgs e)

View 1 Replies

JQuery :: JqGrid Enter Infinitive Loop When Trigger ReloadGrid?

Oct 25, 2010

I am using the JqGrid in my application and in one page I use the setGridParam to change the url and then call the trigger("reloadGrid") method. If the result json response is empty (no row data) my code end up in an infinitive loop reloading the grid. I have checked the gridComplete event and its not triggering the reload. Have any off you guys seen this before or know anything about it?

View 5 Replies

Web Forms :: Assignment Of FormView Control In Design-time To User Defined Composite Control

Feb 1, 2011

i create a composite control as can be seen in code below, and add this control to webform, assign FormView1 to the HeaderControlName property, Run the page, the system will generate parse error message :
Cannot create an object of type 'System.Web.UI.WebControls.FormView' from its string representation 'FormView1' for the 'HeaderControlName' property. However, if i don't assign FormView1 in design screen and manually (through coding) assign FormView1 to the custom control on init, it works as expected.

custom control
public class CmdTest : CompositeControl
{
public virtual FormView HeaderControlName
{
get
{
object oObject = ViewState["HeaderControlName"];
return (oObject == null) ? null : (FormView)oObject;
}
set
{
ViewState["HeaderControlName"] = value;
}
}
protected override void CreateChildControls(
{
Controls.Clear();
Button xx = new Button();
Controls.Add(xx);
}
}
webpage.aspx (assign FormView1 in design time, it will generate error)
<Utils:CmdTest ID="CmdTest1" runat="server" HeaderControlName="FormView1" />
webpage.aspx (didn't assign FormView1 in ASPX, but assign it on Init Code, it works)
<Utils:CmdTest ID="CmdTest1" runat="server" oninit="CmdTest1_Init" />
Webpage.aspx.cs
protected void BsCmdTest1_Init(object sender, EventArgs e)
{
CmdTest1.HeaderControlName = FormView1;
}

View 2 Replies

JQuery :: Toggle Multiple Divs / Failed At Each Attempt To Put Code In A 1 - 6 Loop To Hide All Divs?

Jan 31, 2011

I was just after some help to put the following code into a loop. I have 6 div's with id's ImgDetails1 - ImgDetails6 and 6 buttons
with id's 1 - 6

if 1 is pushed it should hide the other divs but ensure div1 is shown. the same applies for every other
div.

I can do this the long way writing logic for each div but I am not the best with js and have failed
at each attempt to put the code in a 1 - 6 loop to hide all divs except the one selected and make sure that is shown.

[Code]....

View 4 Replies

JQuery :: Loop Through Gridview Rows And Access Each Rows Element?

Dec 7, 2010

i have gridview and having few rows. each rows have checkbox,textbox,combo in each column. how can i loop through gridview using jquery and access each elements in rows in loop for collection the value at client side by jquery.

View 3 Replies

Delaring A String Thats Within A Loop Within Another Loop

Jan 14, 2010

Im stuck with declaring a string which is in a loop within another loop.

Dim CompanyDetails As String = ""
Dim CompanyRow As DataRow
For Each CompanyRow In newdt.Rows
CompanyDetails += CompanyRow(1) & " " & CompanyRow(0) & "<br/>"...

How can I get this to see the GetInfo as declared..... since its in a loop within a loop?

View 9 Replies

Loop Through The Datalist To Get Data?

Feb 3, 2010

I'm stuck in converting the rate in the datalist. My page contain one dropdownlist(currency converter), one datalist - inside contain the price of bags in labels. Now I uses the dropdownlist.selectedIndexchange

[code]....

Althought it did convert the rate, but it only convert the first row.

View 1 Replies

How To Loop Through JSON Data

Aug 16, 2010

I have an ashx page that returns the following JSON data that I would like to be able to loop through and add to values to a bunch of li's in a ul.

My question is how do I loop through to retrieve the values.

The data that is returned from the ashx look slike this

{"ImageCollection":
{
"Images":
[
{
"ImageID":"62",
"CatID":"1",......

I get a single alert that says undefined. What am I doing wrong?

View 1 Replies

Forms Data Controls :: Insert To Data Table Checkboxlist Items Within For Loop?

Jun 1, 2010

in my button4 click event, i want to insert checboxlist items to data table. first i want to delete all of the exisiting and then insert again.

my code is below but it is not working if you could explain anyone ?

in page load I have written code so that existing checkbox items are selected.

[code]...

View 5 Replies

Data Controls :: Loop And Insert Data Of All Sheets In Excel File To Database

Apr 23, 2014

I want to insert data in sql server from sheet within excelsheet ,there are three sheets in the file which i want to upload in three different tables,currently i am doing by selecting an individual sheet and the table to upload thus doing it three times for three sheets can i do it in one go,like passing all the sheets to a function or something like that or how can i do it in a better way and also i cannot directly upload sheet into table as i have to map one column of excel to different table of database to get its value like i need statecode but statename is provided in the sheet so i map statecode to statename in a staging table and then i upload the data...

View 1 Replies

Data Controls :: Loop Through Parent And Child / GridView And Same Data To Database

Mar 3, 2014

 I have nested gridviews, in the outer grid I am displaying the question and in the inner grid 4 options are displayed in radiobuttons.  I have kept Lock Answer button inside Item Template in inner gridview , so this button is coming with each and every question and when i click on Lock Answer button in front of any question, its saving the corresponding answer in the database. For ex, if there are 10 questions this button is coming with all the questions, all the questions are on single page and all are multiple choice. Now everything is working mine, my requirement is that I need on 1 common Lock Answer button at the bottom of the page and not with all the questions. And when I click on that common button it should run for all the questions that are displayed on the screen at should fetch and update each unique answer corresponding to that question in the database. Below is my code:

<asp:GridView ID="gvouter" runat="server" GridLines="None" AutoGenerateColumns="False"
AllowPaging="false" OnRowDataBound="gvouter_RowDataBound" Width="100%" OnRowCommand="gvouter_RowCommand"
OnPageIndexChanging="gvouter_PageIndexChanging" >
<PagerSettings Position="Top" />
<Columns>
<asp:TemplateField>
<ItemTemplate>

[code]...

View 1 Replies

How To Receive Data From Database And In A While Loop

Oct 15, 2010

i want to receive some data from my database and in a while loop. i use this code in the while loop

Code:
Dim sqlda As New SqlDataAdapter()
sqlda.SelectCommand = New SqlCommand()
sqlda.SelectCommand.Connection = con
sqlda.SelectCommand.Parameters.Add(paramar(0))
sqlda.SelectCommand.CommandText = "select images,creationdate,dimosieyseis from t_accounts where UserName=@un"
Dim ds As New DataSet()
sqlda.Fill(ds)

if i open and close the connection it becomes slow. if i use a general con and not open and close it then i receive an error

"There is already an open DataReader associated with this Command which must be closed first. "

then i tried to resolve this error with

MultipleActiveResultSets=True that resolves the problem but it is not faster because i think it does the open and close of the connection automatically

View 4 Replies

How To Get From Loop Session On Data Reader

Nov 26, 2010

I am trying to send session on Loop and trying get .

[code]....

In above code, I just only get same SessionId on every news headings, how do I get next row session id?

View 2 Replies

Web Forms :: Add Data Value By Loop In Dropdown In C#?

Oct 29, 2010

how can add data value by loop in dropdown reply me soon

View 2 Replies

MVC :: Update Data From Foreach Loop?

Feb 21, 2011

I am trying to do some basic. Display customer testimonials in a table using foreach loop and have a checkbox on each row. Once checked, update the table.

I have a stored procedure of complex type in my entity framework. Here is my View.

[Code]....

Here is my model

[Code]....

[Code]....

[Code]....

[Code]....

[Code]....

[Code]....

[Code]....

[Code]....

[Code]....

[Code]....

View 5 Replies

ADO.NET :: Use Date Data Type In While Loop?

Nov 10, 2010

i have an apllication which calculates date. First i retrieved initial date and expiry date from the database using datareader. then i want to check whether initial date is less than or equal to expiry date.If it satisfies the condition I want to add one month to that date(eg: if initial date is 09/10/2010 and expiry date is 09/08/2011 if looping statement becomes true initial date should be incremented by one month i.e. 09/11/2010(dd/mm/yyyy))

how can I do this using any looping statements. I tried like this

While CDate(indate) <= CDate(expdate)
nextindate = CDate(indate.AddMonths(1))
End While

View 3 Replies

Forms Data Controls :: Loop Through Listview And Get 1st Value Of Each Row

Jun 1, 2010

I just cannot figure out how to do this. How do I get the 0 index item from each row of a listview? Here is what I have so far.

[Code]....

View 2 Replies







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