cell

Is there a way to add an image to a Cell using the POI Api?

I'm making an application that converts our data structure to an excel file. We're currently using POI to do the conversion. The problem is that the Cell only supports Strings, Numbers and formulas, and our data structure supports images. Is there a way to add images to cells? ...

Ways to identify which cell was clicked on WPF Grid?

Hi I have a 3x3 matrix grid. If a user on particular cell, how can I identify the cell cordinates after click? Please advise. thanks PJ ...

Dynamically Move Table Cell (up/down)-javascript

Group, I have a table that is dynamically built with device ids. I have a "swapCell" that moves the cells up and down when the user clicks on (up/dwn) buttons. I have a delete row function that deletes current row. -Problem is: If I have six rows (1,2,3,4,5,6) and six id's (id=row1,id=row2,id=row3,id=row4,id=row5,id=row6) -And dele...

how do I resize an original image in an HTML table?

Hi I created a table with 4 rows and 16 columns in HTML and I inserted an image in one cell and text in another until I had all my rows and columns. See my code below. My problem lies with the image: the image size is too big. I don't know how to get it to about the size of a thumbnail. Also the text isn't sitting right next to the imag...

Need help with table...aligning cells and input boxes

Hi, I am creating 1 of 3 nested tables within the <form> tag in my HTML document. I inserted input fields to create the text boxes to the right of the text. That all works my only problem is that the following cells: "First Name, Last Name, Address, City, State, Zip Code, and County" are not directly under one another in such a way as t...

rearrange cells in tableview during runtime

could someone please tell me and point me in the right direction on how i am able to code to allow the cells to be able to move in a tableview at the moment when i click and hold and then drag below the second cell... it doesnt move... obviously... it just drags all the cells with it and stretches back up again. i would like to be able ...

How to display the image in a cell?

I am new to iphone development.I want to display image in each cell.I am having only the url of the image in a array.please help me out.Thanks. ...

C# and Microsoft Excel 9.0 Object Library (Excel 2000) getting a cell coordinate excel style.

Is there a way with Excel 9.0 Object Library to get a cell coordinate (from a range or cell) "Excel style" for example: A1 or C4 instead of [1,1] and [4,3]? ...

iPhone tableview does not create cell for added row

I have a SQLite DB containing tasks. Each task has a date, and there can be multiple tasks per date. My app loads the data for one month only into a mutable dictionary. The key of each dictionary item is a string of the day of the month (1, 2, 3 ... 31). The corresponding value is an array of tasks for that date. Thus, for each day of t...

How to display a text multilined inside a cell of a table in iphone?

I am new to iphone development.I am parsing a xml file and displaying the title, date, view and summary in each row of a table.The contents of summary is big ,so only first 3 words are displayed in the cell. I increased the height of the row.Still 3 words are displayed in my cell.How summary should fit properly inside the cell and full c...

How do I increase the width of a column in an HTML table?

Hi, How do I increase the width of a column in an HTML table? Below is my code. I am trying to get the second <td> tag in each row to expand so that there is more space between the input text box (1st <td> tag) and the name of the cookie and it's price (3rd <td> tag). Any ideas? Thanks! <!--Order Info. table -nested table 2 --> <!--Th...

How do I set a fixed amount of space for a cell in an HTML table?

Hi, I am trying to figure out how to get my text to not wrap when the browser window is maximized to a 24 inch monitor and minimized to a more regular size. I think if I set a fixed number of space for a cell within an HTML table that this will help but I don't know how...any ideas? My monitor is 24 inches and so minimizing it to a norma...

How to left-align all table cells but the last one?

I have a table with 1 row and 5 columns. I have fixed the width of those 5 columns to certain known values (150px, 200px etc..). I have also set the left-margin for each one. I want the table to widen and occupy the entire width of its parent. So, I set its width to 100%. When the table is wider than the combined width and margins of th...

iphone dev add cell text to the same position point on UIView

Hi, When i selected a cell, i want to add the text from the cell to the underlying UIView at the same position. So the text in the UIView should be at the same position as the text in the cell. I dont know how to map the cell origin to a UIView origin point. Anyone any hints? Ton. ...

Nested Cells TCPDF

Hi Guys, Im using TCPDF for the first time and am laying out some data using cells, the problem is because i am using multiple cells to layout what is essentially one item when the page breaks the items will split up rather than breaking all together. Is there any way where you can nest cells / multicells in TCPDF?? Thanks ...

How to get Solr Extraction Handler to extract multiple META tags with the same name?

I am uploading some HTML documents to the SOLR extraction handler (Solr-Cell), which have META elements in the head in this form: <meta name="product" content="firstproduct" /> <meta name="product" content="anotherproduct" /> My schema has product defined as a multi-valued field: <field name="product" type="string" indexed="true" sto...

TableView Datasource must return a cell, check code

The debugger threw me this error UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath: this is my code: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = nil; NSString *text = nil; NSInteger secti...

How can I create a cell of strings out of a meshgrid in MATLAB?

I have a library function that takes parameters as a text string (it's a general C library with a MATLAB frontend). I want to call it with a set of parameters like this: '-a 0 -b 1' '-a 0 -b 2' '-a 0 -b 3' '-a 1 -b 1' '-a 1 -b 2' '-a 1 -b 3' etc... I'm creating the values of a and b with meshgrid: [a,b] = meshgrid(0:5, 1:3); whic...

iphone tableview cells memory leak?

SO, I have a tableview with 20 cells each with a text title, a subtitle label and a textfield (with a button to give it a nice background), but I find that after scrolling the tableview a few times it starts to slow down in the simulator. I figure this is a memory leak, but I thought I'd already released everything that I needed. Any c...

Insert doubles in cell array into vector in Matlab

How can I take the first row of a cell array that contains doubles and insert it into a vector, without using a 'for' loop? ...