change (2) 썸네일형 리스트형 [fpspread][c#] vb6 -> c# celltype 변경 //vb6fpSpread1.TypeCurrencyDecPlaces = 2fpSpread1.Value = Val(fpSpread1.Value) / Tmp@ * 100 //c#var currencyCell = new FarPoint.Win.Spread.CellType.CurrencyCellType();currencyCell.Separator = ".";currencyCell.DecimalPlaces = 2;sprList.Sheets[_sheetIndex].Cells[row, col].CellType = currencyCell;var tempCellValue = sprList.Sheets[_sheetIndex].Cells[row, col].Value / tempValue * 100;sprList.Sheets[.. [jQuery] to find checkbox and change attribute 1234567891011$(".Chk_Choice").click(function () { var parentChildren = $(this).parent().parent().parent().children(); var parentAllChecked = false; var isChecked = $(this).is(":checked"); var checkboxId = $(this).attr("id"); $.each(parentChildren.find("input[type=checkbox]"), function (index, item) { if (checkboxId != $(item).attr("id")) { $(item).attr("disabled", isChecked); } }); });Colored by.. 이전 1 다음