How to get a jqGrid cell value when editing

General function to get value of cell with given row id and cell id Create in your js code function: function getCellValue(rowId, cellId) { var cell = jQuery(‘#’ + rowId + ‘_’ + cellId); var val = cell.val(); return val; } Example of use: var clientId = getCellValue(15, ‘clientId’); Dodgy, but works.

How to disable Excel’s automatic cell reference change after copy/paste?

From http://spreadsheetpage.com/index.php/tip/making_an_exact_copy_of_a_range_of_formulas_take_2: Put Excel in formula view mode. The easiest way to do this is to press Ctrl+` (that character is a “backwards apostrophe,” and is usually on the same key that has the ~ (tilde). Select the range to copy. Press Ctrl+C Start Windows Notepad Press Ctrl+V to past the copied data into Notepad … Read more

UICollectionView cell subviews do not resize

I ran into the same issue just now. When using the UICollectionViewFlowLayoutDelegate method to set the cell size depending on device and device-orientation, the size would be calculated properly but subviews would not resize to fill the newly size cell. The effect was a large blank cell with small subviews that don’t fill the cell’s … Read more