Quantcast
Viewing all articles
Browse latest Browse all 6517

Commented Issue: SPServices.SPSetMultiSelectSizes values disapear in IE7 [10129]

From http://spservices.codeplex.com/discussions/286038


When I do the same it looks fine also. But all my users that are using IE 7 are having the same issue. I don't have 7 to test with either. Do you want the entire page code or the just the script? Below is the script.
```<script type="text/javascript" src="../../Scripts/jquery-ui-1.10.1/js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="../../Scripts/jquery-ui-1.10.1/js/jquery.SPServices-0.7.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$().SPServices.SPSetMultiSelectSizes({
multiSelectColumn: "Platform or Team"
});
$().SPServices.SPSetMultiSelectSizes({
multiSelectColumn: "Requested Service(s)"
});
$().SPServices.SPSetMultiSelectSizes({
multiSelectColumn: "Assigned To"
});
// You can include other script which you want to run at page load in this block as well
});
</script>
```



Comments: Using .clone() caused a select with a duplicate id. In IE7, the original select was deleted rather than the clone. Rewrote the function to work without .clone().

Viewing all articles
Browse latest Browse all 6517

Trending Articles