I dynamically add a select button that can be clicked to select a given contact from the list being appended to a table.
I have to click anywhere in the document before I can click on the dynamically added buttons. Clearly the bind events for the dynamic buttons are not binding until after the first click.
BTW, in the current version of the function I bind a click event to the body of the document for each dynamic button, and then see if the event target is the relevant dynamic button, at which time I trigger the desired function to pass back the selected contact. I switched to this approach on the advice given to someone else experiencing the same thing I'm describing here. Before this implementation, I had a very traditional $J("#btnId").bind('click', { .... }, function (event) { ... }); approach to bind the click event, which resulted in the same experience of having to click twice before the click event would fire on dynamic buttons. I've also come at this from other angles, using jQuery's .bind, .live, .delegate approaches, and in all cases I had to click twice before the button's click event would actually fire.
function PickContacts() {
if ($J("#tblCp").length > 0) {
var broad = $J("#chkCpBroad").prop("checked");
var contactType = GetCheckBoxListValues("divCpContactType");
var contactId = "";
if ($J("#txtCpContactId").length > 0) {
contactId = $J("#txtCpContactId").val();
}
var contactName = $J("#txtCpContactName").val();
var firstName = $J("#txtCpFirstName").val();
var lastName = $J("#txtCpLastName").val();
var email = $J("#txtCpEmail").val();
var allMatches = $J("#chkCpAllMatches").prop("checked");
var rows = ParseInts($J("#txtCpRowsReturned").val(), 10);
if (rows === 0) {
rows = 15;
}
var crmSeatsOnly = false;
if (cpCrmSeatsOnly !== null && cpCrmSeatsOnly === "Y") {
crmSeatsOnly = true;
}
var tbl = $J("#tblCpResults");
tbl.empty();
if (contactId !== "" || contactName !== "" || firstName !== "" || lastName !== "" || email !== "") {
$J.ajax({
type: "POST",
url: "/ClientBin/Contact.asmx/ContactPicker",
data: "{'broad':" + broad + ",'contactType':'" + contactType + "','contactId':'" + contactId + "','contactName':'" + contactName + "','firstName':'" + firstName + "','lastName':'" + lastName + "','email':'" + email + "','allMatches':" + allMatches + ",'crmSeatsOnly':" + crmSeatsOnly + ",'rows':" + rows + "}",
contentType: "application/json; charset=utf-8",
context: tbl,
success: function (result) {
if (result.d !== "TIME OUT") {
var JObject = ParseJson(result.d);
if (JObject !== null) {
if (JObject.RESULT[0].SUCCESS) {
var alternatingRow = false;
var c = JObject.CONTACT;
for (i = 0; i < c.length; i++) {
var trStyle = "rowstyleNoBorder";
if (alternatingRow) {
trStyle = "alternatingrowstyleNoBorder";
alternatingRow = false;
}
else {
alternatingRow = true;
}
this.append('<tr class="' + trStyle + '"><td><span id="lblCpContactId' + i + '">' + c[i].CONTACT_ID + '</span></td><td><span id="lblCpContactName' + i + '">' + c[i].CONTACT_NAME + '</span></td><td><span id="lblCpFirstName' + i + '">' + c[i].FIRST_NAME + '</span></td><td><span id="lblCpLastName' + i + '">' + c[i].LAST_NAME + '</span></td><td valign="top"><input type="submit" id="btnCpSelect' + i + '" value="' + $J("#hdnCpTransSelect").val() + '" title="' + $J("#hdnCpTransSelectContact").val() + '" /></td></tr>');
$J("body").bind('click', { index: i, contactId: c[i].CONTACT_ID, contactName: c[i].CONTACT_NAME, firstName: c[i].FIRST_NAME, lastName: c[i].LAST_NAME }, function (event) {
if ($J(event.target).is("#btnCpSelect" + event.data.index)) {
SelectContact(event.data.contactId, event.data.contactName, event.data.firstName, event.data.lastName);
return false;
}
});
// Copy button css styling from an existing on page button by passing the IDs for both buttons to the CopyBtnStyle fn.
CopyBtnStyle("btnCpSelect" + i, "btnCpClose");
}
}
else {
this.append('<tr><td><span id="lblCpNoRows">' + JObject.RESULT[0].FEEDBACK + '</span></td></tr>');
}
}
}
else {
TimeOut();
}
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
WsFail(XMLHttpRequest, textStatus, errorThrown);
}
});
}
}
}
.delegate(), which does a quite similar thing, taking advantage of event bubbling and checking the original selector againstevent.target. You should also not bind a separate event for every row, especially if you've got paging, you might end up with hundreds of unused but bound events firing at every click. There must be something else going on there, are you sure you don't have any events conditionally callingevent.stopPropagation()further up the DOM tree? – DarthJDG Jun 21 '11 at 20:14