I’ve got your standard Edit User form. If I’m editing an existing user I want the form to be auto-populated with the user’s data. I’ve tried this a couple of ways and none are working.
$(“#edit_username”).jqxInput({
displayMember: row.username,
valueMember: row.username
});
Neither of these attributes seem to make the Input display the current user’s data. What exactly are displayMember and valueMember if they aren’t what the input displays and its current value respectively? I can get the username to show up by using placeHolder but that doesn’t seem like the correct way to go to me.
Andrew