We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I load in my select dynamically like below, and it nearly works except the UL generated by flex select is empty
(Otherwise this awesome, I hate to point this out!! an ideas ?)
function loadActivitySelect() {
var $activityContainer = $('#ActivitySelectContainer'); $.ajax({ type: 'GET', url: '/MyGames?handler=ActivitySelect', contentType: 'application/json', dataType: 'html', success: function (response) { // Appends a select to this element $activityContainer.empty(); $activityContainer.append(response); var $activitySelect = $activityContainer.find('select'); setTimeout(function () { $activitySelect.flexselect(); }, 500); }, failure: function (response) { $activityContainer.empty(); } });
}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I load in my select dynamically like below, and it nearly works except the UL generated by flex select is empty
(Otherwise this awesome, I hate to point this out!! an ideas ?)
function loadActivitySelect() {
}
The text was updated successfully, but these errors were encountered: