반응형
--- <html> ---
<select id="selectInfo" name="selectInfo">
<option value="test1">abc</option>
<option value="test2">def</option>
</select>
--- <js> ---
function resultFormatter(cellvalue, options, rowObject){
var result = "";
$('#selectInfo > option').each(function(){
if(cellvalue.toString() == $(this).val(){
result = $(this).text();
}
});
return result;
}
function에 cellvalue, options, rowObject가 들어가 있는 것은 jqGrid에서 사용하는 것이기 때문에 들어가 있는 것이고 상황에 맞게 응용해서 사용하면 도움이 될 것으로 예상됩니다.
반응형
'jQuery' 카테고리의 다른 글
checkbox 배열 값 가져오기 (0) | 2017.01.18 |
---|---|
radio box(라디오 박스)값 변경 시 이벤트 (0) | 2017.01.10 |
Ajax 로 배열 넘길 때 값이 깨지는 현상 해결법 (4) | 2016.08.23 |
GET 방식 ? POST 방식 ? GET 방식 제한은 2048글자? (0) | 2016.08.23 |
배열 eq(index) 접근 방법 (0) | 2016.08.01 |