Tagged Questions

0
votes
1answer
34 views

UITableView shows some gapped cells

Hi folks, During my iPhone app development, I saw this curious UITableView behavior which can be seen into this posted image: http://img690.imageshack.us/i/screenone.png/ It hap …
0
votes
2answers
176 views

Excel-like auto-updating table cells using jQuery

I have an HTML table structure that looks something along the lines of: PRICE QUANTITY TOTAL [5____] [2____] 10 (TOTAL1=PRICE1*QUANTITY1) The values in the pric …
1
vote
1answer
208 views

Merging cells in a JXTreeTable

Hi, I want to merge two cells in a JXTreeTable. Is this possible? I have read the solution for Merging cells in JTable, but this does not work for JXTreeTables. What I mean with m …
0
votes
1answer
36 views

Removing parts of a cell

In Excel, how do I write a formula that will partially delete a cell (from a certain point onwards). For example, if A1 is "23432 Vol 23432". I want B1 to just be "23432 " (everyt …
2
votes
1answer
145 views

How to change default stop edit behavior in jtable

When you edit a cell in an jtable the value is made permanent only if the focus is changed or if one hits enter (for example if you change the cell value from "abc" to "xyz" and cl …
1
vote
2answers
273 views

cell editing in JTable

Hi, Im doin a project using JTable, i want to make my table cells editable. I used, public boolean isCellEditable(int row, int column) { return true; } My problem is, t …
1
vote
3answers
2k views

Silverlight Datagrid: Changing cell styles, based on values

I have some data. I want to go through that data and change cells (for example - Background color), if that data meets a certain condition. Somehow, I've not been able to figure it …
2
votes
1answer
240 views

ASP: How to import data from a merged cell in Excel?

I need to import data from an excel file, but some field is a merged cell. How can I determine if a field is merged or not, and how many cells are merged together in that field? …
0
votes
1answer
342 views

Dynamic merging of cells in SSRS

In an SSRS Report ,I have a table which has 14 columns, 1st column is 7am and the last column is 7pm. I have 100 records with conference names and the timings, ex: 1) interenation …
0
votes
1answer
687 views

html table horizontal spacing

How can I set an X spacing between html table's columns? Using cellpadding or cellspacing I got vertical spacing too (and I don't want it!). I can't use CSS. Suggestions?
0
votes
1answer
1k views

Drag and Dropping DataGridView’s Cell Contents (VB.Net 2.0) [closed]

Well, as the title suggests I wondered how I could drag and drop read-only cells in Winforms using Visual Basic.Net. I basically have a 9x9 grid and need to allow the user to move …
0
votes
2answers
357 views

Upgrade from Excel 2003 to 2007 results in “stack overflow error” on previously working vba

The following VBA code works great in Excel 2003, but results in a "stack overflow error" in Excel 2007. The code is required to either unlock or lock certain cells based on a dro …