Question: I use multiple custom lists, each with approximately 100 items. The “4 item” default length causes a large amount of scrolling when the items pop up on the list to make a selection. How can i change the length of a Picklist in SalesLogix Web v7.5?
Answer: Here is a piece of code specifically for this purpose:
$(document).ready(function() { $(“.picklist select”).attr(“size”, 8); });
This will change the size on all Picklists of the page. This will need to run on every postback, so I add this on the OnFormBound event:
ScriptManager.RegisterClientScriptBlock(this, GetType(), “Resize_Picklists”,
“$(document).ready(function() { $(‘.picklist select’).attr(‘size’, 8) })”,
true);



