Hi,
i have a jqxdropdownlist that contains a list of operation possibility on file…so when i load values for this dropdown..the text display in the dropdown square(without open it)…are abbreviated to a couple of letter…like operation “CMK mode” willl result in “CMK…”..but if a reselect any item….the displayed text will be not truncate..until the edge of the dropdownlist control.
i set up value with that kind of code..
var checkedItemOperations = properties.operationsList; for (var i = 0; i < checkedItemOperations.length; i++) { var item = $("#lbOperationProperties").jqxDropDownList('getItemByValue', checkedItemOperations[i]); if (item != null && item !== undefined) { $("#lbOperationProperties").jqxDropDownList('checkItem', item); } }
i receveid a list of operation from ajax call before..and want to check every item in the operationlist variable…
do i made something wrong?