active questions tagged table - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:04:33Z http://stackoverflow.com/feeds/tag/table http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1580789/yui-datatable-width 0 YUI Datatable Width AbeP 2009-10-16T22:50:48Z 2009-12-22T02:42:38Z <p>This may seem like a basic question, but I'm having trouble figuring out how to set the table width to 100% on a YUI datatable.</p> <p>I tried doing</p> <pre><code>#dtContainer { width: 100%; } #dtContainer table { width: 100% } </code></pre> <p>but none of these approaches work.</p> <p>To clarify, I am trying to set the datatable width to 100% when the table is empty and the empty message is displayed.</p> <p>The generated table is an HTML table; so, I thought this should work. Thanks, Abe</p> http://stackoverflow.com/questions/1928939/is-there-anyway-to-get-the-current-record-count-in-a-html-table-thats-using-jquer 0 is there anyway to get the current record count in a html table thats using jquery datatable plugin oo 2009-12-18T15:41:51Z 2009-12-22T00:17:53Z <p>i tried using this:</p> <pre><code> var rowCount = $('#locationsTable tbody tr').length - 1; </code></pre> <p>but the one issue is that you can't tell if there is 1 record in the table or 0 records because, when there are 0 records, jquery datatable plugin shows one extra tr row that says "No records matched"</p> <p>is there a better way to get actual valid row/record count? </p> http://stackoverflow.com/questions/1939641/making-table-row-clicks-fire-hyperlinks-in-jquery 0 Making Table Row Clicks Fire Hyperlinks in jQuery Volomike 2009-12-21T11:42:14Z 2009-12-22T00:08:29Z <p>I have a table of 5 rows and 3 columns. The first column has a hyperlink in it with a target=_new. I want things such that when I click any column in the same row, it fires that hyperlink and a new window opens up via the target=_new. Is this possible in Javascript or jQuery? I found I was able to access the href, at least, by doing this:</p> <pre><code>$('#search-results TD').click(function() { var s = $(this).siblings(':first-child').contents().attr('href'); alert(s); }); </code></pre> <p>Note that simply adding hyperlinks on the other table columns besides col 1 is not desirable because I want a click in that row (even not on top of the hyperlink) to fire that hyperlink.</p> <p>Note also that window.open might be disabled in some browsers, but target=_new gets right on through.</p> http://stackoverflow.com/questions/1900816/keep-relational-database-structure-in-solr-index 1 keep relational database structure in solr index? unknown (google) 2009-12-14T13:05:44Z 2009-12-21T15:29:23Z <p>I was able to import data through solr DIH.</p> <p>In my database I have 4 tables:</p> <pre><code>threads: id, user_id, country_id tags: id thread_tag_map: thread_id, tag_id countries: id posts: id, thread_id </code></pre> <p>i want each document in solr to consist of:</p> <pre><code>thread_id tag_id country_id post_id </code></pre> <p>for example:</p> <pre><code>thread_id: 1 tag_id: 23 tag_id: 34 country_id: 43 post_id: 4 post_id: 23 post_id: 23 </code></pre> <p>how should i map it?</p> <p>i havent been able to configure data-config.xml for this. i have followed the DIH tutorial without success.</p> <p>Here is my schema.xml:</p> <pre><code>&lt;schema name="example" version="1.2"&gt; &lt;types&gt; &lt;fieldType name="string" class="solr.StrField" sortMissingLast="true"/&gt; &lt;fieldType name="int" class="solr.TrieIntField" precisionStep="0" positionIncrementGap="0"/&gt; &lt;fieldType name="uuid" class="solr.UUIDField" indexed="true" /&gt; &lt;fieldType name="text_rev" class="solr.TextField" positionIncrementGap="100"&gt; &lt;analyzer type="index"&gt; &lt;tokenizer class="solr.WhitespaceTokenizerFactory"/&gt; &lt;filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" /&gt; &lt;filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" splitOnCaseChange="0"/&gt; &lt;filter class="solr.LowerCaseFilterFactory"/&gt; &lt;filter class="solr.ReversedWildcardFilterFactory" withOriginal="true" maxPosAsterisk="3" maxPosQuestion="2" maxFractionAsterisk="0.33"/&gt; &lt;/analyzer&gt; &lt;analyzer type="query"&gt; &lt;tokenizer class="solr.WhitespaceTokenizerFactory"/&gt; &lt;filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/&gt; &lt;filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" /&gt; &lt;filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="0" catenateNumbers="0" catenateAll="0" splitOnCaseChange="0"/&gt; &lt;filter class="solr.LowerCaseFilterFactory"/&gt; &lt;/analyzer&gt; &lt;/fieldType&gt; &lt;/types&gt; &lt;fields&gt; &lt;field name="id" type="uuid" indexed="true" stored="true" default="NEW"/&gt; &lt;field name="threads.title" type="text_rev" indexed="true" stored="true"/&gt; &lt;field name="posts.body" type="text_rev" indexed="true" stored="true"/&gt; &lt;dynamicField name="*id" type="int" indexed="false" stored="true"/&gt; &lt;/fields&gt; &lt;uniqueKey&gt;id&lt;/uniqueKey&gt; &lt;defaultSearchField&gt;posts.body&lt;/defaultSearchField&gt; &lt;solrQueryParser defaultOperator="OR"/&gt; &lt;/schema&gt; </code></pre> http://stackoverflow.com/questions/1933327/solr-relational-database-error 0 solr relational database error unknown (google) 2009-12-19T16:25:06Z 2009-12-21T15:04:50Z <p>i got 2 tables:</p> <p>threads: id, title</p> <p>posts: id, thread_id, body</p> <p>i want a document to contain the thread and all the posts that belong to it. why doesnt this work:</p> <pre><code>&lt;document&gt; &lt;entity name="threads" query="select id, title from threads"&gt; &lt;field column="title" name="threads.title"/&gt; &lt;entity name="posts" query="select id, thread_id, body from posts where thread_id='${threads.id}'"&gt; &lt;field column="id" name="posts.id"/&gt; &lt;field column="thread_id" name="posts.thread_id"/&gt; &lt;field column="body" name="posts.body"/&gt; &lt;/entity&gt; &lt;/entity&gt; &lt;/document&gt; </code></pre> <p>it says that total rows fetch are 228. but it tells that 0 documents were added. why is that?</p> http://stackoverflow.com/questions/1923856/using-jquery-datatable-plugin-does-fnaddadd-add-rows-to-the-top-or-bottom-of-a 0 using jquery datatable plugin, does fnAddAdd() add rows to the top or bottom of a html tabld oo 2009-12-17T19:00:12Z 2009-12-21T09:07:06Z <p>i have tested this and the reason i asked the question is that it seems to be doing different things for different tables.</p> <p>i couldn't find any documentation on if this is configurable or not. I would have thought it would do the bottom but i have a few examples where i see it adding rows at the top or even in the middle sometimes. it seems quite random</p> <p>any ideas ??</p> http://stackoverflow.com/questions/1938217/table-item-vertical-alignment-change-when-adding-control-inside-td 1 Table item vertical-alignment change when adding control inside TD Nassign 2009-12-21T04:37:33Z 2009-12-21T04:50:25Z <p>I have been wondering about this. Why does the alignment of the td gets affected when placing controls inside it.</p> <p>For example. </p> <pre><code>&lt;tr&gt; &lt;td&gt;Row 1&lt;/td&gt; &lt;td&gt; &lt;input type="text" /&gt; &lt;input type="button" value="Select" /&gt; &lt;/td&gt; &lt;td&gt;Selected Value 1&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Row 2&lt;/td&gt; &lt;td colspan="2"&gt; &lt;input type="text" /&gt; &lt;input type="button" value="Select" /&gt; Selected Value 2 &lt;/td&gt; &lt;/tr&gt; </code></pre> <p>The "<strong>Row 1</strong>" text is aligned with "<strong>Selected Value 1</strong>". However, the text "<strong>Selected Value 2</strong>" is slightly down and not centered and not aligned with "<strong>Row 2</strong>".</p> <p>I already tried vertical align middle or even valign and it does not work. It happens in both IE and Firefox. It is more obvious in IE. I really do not get this.</p> http://stackoverflow.com/questions/1929162/need-to-assign-multiple-attributes-to-records-should-i-opt-for-one-table-or-mul 1 Need to assign multiple attributes to records - should I opt for one table or multiple tables? bosh 2009-12-18T16:14:29Z 2009-12-21T02:58:13Z <p>I am using an MVC pattern to represent a table with many records of music albums. To each music album there are attributes (genre, artist, ratings, etc). Each attribute can have multiple values (so the genre of one album can be both "pop" and "latin", for example). I want to represent those attribute values using table(s).</p> <p>So there are two basic approaches that I can think of. I wonder which approach is better?</p> <ol> <li><p>Have a separate table for each attribute (e.g., <code>GENRE</code>, <code>ARTIST</code>). The columns in each table will be album_id and attr_value.</p></li> <li><p>Have a single table <code>ATTRIBUTES</code> which will also include, in addition to the album_id and value, the attribute name ("genre", "artist", ...). </p></li> </ol> <p>Typically I would opt for method 1 (relational DB and all that), but if I choose method 2, my thought is that when I want to add a new attribute, I don't need to create a new model, controller, and view.</p> <p>Any opinions? Thanks!</p> http://stackoverflow.com/questions/1819780/tsql-table-based-function-returning-different-tables 0 TSQL table based function returning different tables Martin 2009-11-30T13:19:42Z 2009-12-20T10:57:55Z <p>Hi,</p> <p>I am triyng to write a table based fuction so it returns a different results depending of the value.</p> <p>I have:</p> <p><CODE> CREATE FUNCTION [dbo].[tblfn_GetAnyDataSet_As_View] <BR> (@DataType as varchar(50)) <BR> returns table as<BR>return<BR> select * from <BR>(select * from table1 UNION select * from table2) DATA <BR>where DATA.DataType=@DataType </CODE></p> <p>and I want to upgrade it to something simular to <CODE><BR> CREATE FUNCTION [dbo].[tblfn_GetAnyDataSet_As_View] <BR> (@DataType as varchar(50)) <BR> returns table as<BR>return<BR> Case @DataSet<BR> when 'D1' then select * from table1<BR> when 'D2' then select * from table2<BR> else select 'Not Selected'<BR> end</Code> <BR> but case is not supported in table functions. I need to keep this as a table function as I have other table functions which build on each other to create a final view which is used by SQL reporting services.</p> <p>Can anyone help me?</p> <p>Thanks in advance,</p> <p>HighFever</p> http://stackoverflow.com/questions/1298825/how-to-load-save-and-display-data-from-gridview-to-xml 0 How to load, save and display data from GridView to XML? Ahmad Farid 2009-08-19T09:45:46Z 2009-12-19T22:08:14Z <p>How to load, save and display data from GridView to XML? Not XML file on the hard disk, but a temporary XML variable to save it all in a single field of XML type in a database.</p> http://stackoverflow.com/questions/1933326/static-progress-bar-as-background-of-table-cell 0 static progress bar as background of table cell Mark 2009-12-19T16:23:49Z 2009-12-19T17:38:19Z <p>Does anyone know the best way to set the background of a row or cell as a 'progress bar'. For example if the 'percent used' cell value is '50%' the bar fills half the background of the row or cell.</p> <p>I am using PHP to generate the table, so maybe I could use a single colour image in the cell and set the width of the img. How would I get the text of the cell to sit on top? How would I know if the text had made the column wider... would I have to use fixed column widths?</p> <p>Would javascript be better as it would be able to detect how wide the columns were rendered as?</p> <p>EDIT: Just to clarify, the progress does not change live... just when the page is loaded.</p> http://stackoverflow.com/questions/1931575/have-first-column-in-html-table-flexible-when-table-width100 1 Have first column in HTML table flexible when table width=100% Brian 2009-12-19T01:07:41Z 2009-12-19T03:28:17Z <p>Hi,</p> <p>I have an HTML table with 8 columns and multple rows. The contents of each cell is generated dynamically and it is hard to predict the width of any column. I set table width=100% as I would like the table to take up the entire width of the div. I would like columns 2 through 8 to stay the same as width as if I did not set a table width. Then I would like for the first column to expand its width so that the table width becomes 100%. Is this possible?</p> <p>Thanks</p> http://stackoverflow.com/questions/1930032/jquery-how-to-show-text-insite-td-through-press-link-inside-td 0 JQuery: How to show text insite <td> through press link inside <td> Mariola 2009-12-18T18:51:47Z 2009-12-18T19:58:12Z <p>i have code:</p> <pre><code>&lt;table id="table_id"&gt; &lt;tr id="tr_id"&gt; &lt;td id="td_id"&gt; &lt;p id="tresc"&gt; text &lt;/p&gt; &lt;a href="#" id="link"&gt;more1&lt;/a&gt; &lt;p id="tresc_more" style="display:none"&gt; more text 1&lt;/p&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr id="tr_id"&gt; &lt;td id="td_id"&gt; &lt;p id="tresc"&gt; text &lt;/p&gt; &lt;a href="#" id="link"&gt;more2&lt;/a&gt; &lt;p id="tresc_more" style="display:none"&gt; more text 2 &lt;/p&gt; &lt;/td&gt; &lt;/tr&gt; </code></pre> <p></p> <pre><code> $(document).ready( function() { $("table#table_id tr td a#link").click( function() { $("table#table_id tr td p#tresc_more").toggle(); }); }); </code></pre> <p>Problem is: When i click on the link "more1" it show's me all hidden text in every row, i want see hidden text only in one row which one i click (for example: when i click more2 i want see "more text 2"). Thanks.</p> http://stackoverflow.com/questions/1928462/how-to-post-a-dynamically-created-fields-in-a-table-using-jquery-asp-net-mvc 1 how to post a dynamically created fields in a table using jquery / asp.net mvc oo 2009-12-18T14:19:36Z 2009-12-18T14:33:03Z <p>I have a button that will create a new entry (row in a table) dynamically using jquery. Each entry is a row in a html table.</p> <p>for each row, each column has an input (textbox, radio button, checkbox) etc. </p> <p>because you can add as many rows as you like you end up with some array or collection of these rows.</p> <p>When i post the form, i dont seem to see this data in the formscollection and dont quite understand how to translate these controls into a data object for binding.</p> <p>So essentially there is 2 questions:</p> <ol> <li><p>Is there any issue with dynamically created controls and making sure they show up in the form post?</p></li> <li><p>What is a way to pass along a table structure of data to my controller. I almost want to have each row represent some Record Object and then pass over a collection of records to teh controller if something like that is possible.</p></li> </ol> <p>any suggestions?</p> http://stackoverflow.com/questions/1926366/how-do-i-get-the-row-and-its-index-in-an-html-table-from-a-button-click-inside 0 how do i get the row (and its index) in an html table from a button click inside a cell in that row. oo 2009-12-18T04:58:18Z 2009-12-18T14:10:15Z <p>question is in the subject</p> http://stackoverflow.com/questions/1928190/which-should-generate-the-html-javascript-or-php 7 Which should generate the HTML: JavaScript or php? Carvell Fenton 2009-12-18T13:27:09Z 2009-12-18T14:05:44Z <p>Merry Christmas and Seasons Greetings all!</p> <p>Quick question, looking for some recommendations. I have a site that will be requesting data from a database and displaying back to the user in a table. I am using jQuery (AJAX), php, and MySQL. </p> <p>Where is the best place to generate the HTML for the table to display the data: should the php generate it and send the whole thing (HTML + data) back from the server, or should the php just send back the data, and the jQuery code make the table and insert the data?</p> <p>Although this is running on an intranet, the I would still prefer the speediest approach.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1049701/nested-tables-1px-border-with-css 1 nested tables: 1px border with css Paul 2009-06-26T15:17:59Z 2009-12-18T05:31:15Z <p>Hi,</p> <p>I'm trying to create a table with a 1px black border.</p> <p>I have to nest a table in the main table, and get "thick" borders where the nexted table butts against its enclosing . I just want a 1px border everywhere.</p> <p>I have this, in effect:</p> <pre><code>table.outer{border:1px black solid; border-collapse: collapse;} td{border:1px black solid; border-collapse: collapse;} table.nexted{border:1px black solid; border-collapse: collapse;} </code></pre> http://stackoverflow.com/questions/1921074/how-to-reset-a-single-table-in-rails 1 How to reset a single table in rails? Yuri 2009-12-17T11:19:01Z 2009-12-17T21:42:40Z <p>I want the primary key values to start from 1 again.</p> http://stackoverflow.com/questions/1924695/navigation-controller-and-table-views 0 Navigation Controller and Table Views zacharisharris 2009-12-17T21:24:19Z 2009-12-17T21:24:19Z <p>Hello! I have been working on an application lately.When the user opens the application,the first view he gets is that of a Table View which contains 6 categories.Next, I want to create a navigation Controller which will enable the user to tap on a cell of one of the 6 categories and this will lead him to a number of different entries displayed on a Table.My question is the following: What code should I write in order to have different entries on each one of the categories?</p> http://stackoverflow.com/questions/1923991/create-table-and-fill-with-test-data-provided-as-text 0 Create table and fill with test data provided as text Peter Lang 2009-12-17T19:24:53Z 2009-12-17T19:53:56Z <p>What is your way of creating and populating test tables in MySQL when looking into SO questions where tables (but not CREATEs) and test data (but not INSERTs) are provided?</p> <p>And what client do you use?</p> <p><strong>EDIT:</strong> Here's a simply <a href="http://stackoverflow.com/questions/1923613/sql-query-to-select-bottom-2-from-each-category">example of what I mean</a> on SO.</p> http://stackoverflow.com/questions/1921869/how-to-dynamicall-add-a-row-to-an-html-table-with-server-data-on-a-dropdown-cel 0 how to dynamicall add a row to an html table (with server data) on a dropdown cell in asp.net mvc oo 2009-12-17T13:41:21Z 2009-12-17T14:01:40Z <p>I have a dropdown cell and after clicking on an item i want to add a row to a html table. I did this using javascript: (addRowToTable is a basic javascript function)</p> <pre><code>&lt;script type='text/javascript'&gt; $(document).ready(function() { $('#locations').change(function() { if (this.selectedIndex != 0) { var support = new Array("True", "False"); addRowToTable(this.value, support , "Table"); this.remove(this.selectedIndex); this.selectedIndex = 0; } }); }); &lt;/script&gt; </code></pre> <p>but i now realized that some of the data that i need to show in the new table row, i don't have on the client side so i need to somehow:</p> <ol> <li>Pass the selected value to the server (controller action) and then get back the rest of the data attributes refresh the html table (ajax) with the new value on the client side after get the full data back on the server.</li> </ol> <p>Does anyone have any examples of trying to do something like this?</p> http://stackoverflow.com/questions/1920745/alternative-backcolor-broken-after-sorting-using-jquery-datatable-plugin 0 alternative backcolor broken after sorting using jquery datatable plugin oo 2009-12-17T10:21:26Z 2009-12-17T10:41:39Z <p>i am using the jquery datatable plugin. i have the following code that sets up alternative backcolor on an html table.</p> <pre><code>$('#dependenciesTabletr:odd td').addClass('odd'); $('#dependenciesTabletr:even td').addClass('even'); $('#dependenciesTable').dataTable({ "bPaginate": false, "aaSorting": [[2, "desc"]], "bJQueryUI": false, "bSortClasses": false, "oLanguage": { "sSearch": "Filter:" }, "bSort": true }); </code></pre> <p>the issue is after i sort the alternative backcolor is broken. is there anyway to reset this after each sort ?</p> http://stackoverflow.com/questions/1919908/css-table-expand-input-box-the-entire-length-without-wrapping-to-new-line 0 CSS table - Expand input box the entire length without wrapping to new line servxr 2009-12-17T06:44:43Z 2009-12-17T07:23:14Z <p>I have a form with elements structured as so:</p> <pre><code>&lt;div&gt; &lt;label&gt;Name&lt;/label&gt; &lt;input type="text" name="name" /&gt; &lt;/div&gt; &lt;div&gt; &lt;label&gt;Address&lt;/label&gt; &lt;input type="text" name="address" /&gt; &lt;/div&gt; </code></pre> <p>The way I want it to look is, the label is positioned next to the input box and the input box expands to fit the entire container. If I set a manual width on the input box, in pixels, then not each box is the same length.</p> <p>If I try to set the width to 100% then the input boxes wrap to a new line in order to expand the entire width.</p> <p>How can I get the labels (who's width is variable) to be position to the left of the input boxes and have those input boxes expand to fit their containing div?</p> <p>Here's my current CSS:</p> <pre><code>#content form input { border: none; height: 23px; position: relative; top: -1px; left: -5px; padding-top: 5px; text-indent: 10px; display: inline-block; } #content form label { background: #c6c9c0 url('../images/form-label-bg.jpg') no-repeat center right; height: 28px; line-height: 30px; display: inline-block; text-indent: 15px; padding-right: 25px; color: #6a6a6a; text-transform: uppercase; font-weight: bold; font-size: 8pt; } </code></pre> http://stackoverflow.com/questions/1918366/automated-line-breaks-in-latex-tables 2 automated line breaks in LaTeX tables Paperflyer 2009-12-16T22:47:58Z 2009-12-17T04:22:57Z <p>In my dissertation, I have a glossary that explains some abbreviations I use. I put this in a table to make it look nicer. However, LaTeX does not break lines at the end of the page.</p> <p>I know that I could force a line break at any point in the table, but it is a long table (much work!) and manual line breaks make the text look jagged and ugly. Is there a nice way to either have a nice-looking glossary or make LaTeX break lines automatically in a table?</p> <p>...if LaTeX wouldn't do these things every so often I would really love it. The way it is, I constantly switch between affection and anger...</p> <p>Best regards and thank you for your help!</p> http://stackoverflow.com/questions/1916983/why-is-the-header-row-not-showing-a-border-on-my-html-table 0 why is the header row not showing a border on my html table oo 2009-12-16T19:17:23Z 2009-12-16T19:23:18Z <p>I have the following CSS code for my HTML table, but for some reason the border doesn't go over the header row (the <code>&lt;th&gt;</code>). It's definitely something simple that I missing but I can't seem to figure it out.</p> <pre><code>#dependenciesTable tr.odd { background-color: #ffffff; } #dependenciesTable tr.even { background-color: #CDE0F6; } #dependenciesTable { border-collapse:collapse; border-width: 1px; border-style: solid; } </code></pre> <p>I am using jquery to add these odd even striping.</p> <pre><code>$('#dependenciesTable tr:odd').addClass('odd'); $('#dependenciesTable tr:even').addClass('even'); </code></pre> http://stackoverflow.com/questions/1900452/ms-access-2003-customized-auto-number-ids-for-tables 2 MS Access 2003 - Customized Auto-Number IDs for tables? Justin 2009-12-14T11:48:17Z 2009-12-16T09:02:27Z <p>Is there a way to use my own number in a table like an auto-number; that is to automatically assign the next available to a new record. We have system ID numbers for each employee that I want to tie into this database. I just want the table to auto assign the next number.</p> <p>Can I do this? Could this be done with a mixture of numeric and alpha? Could criteria be used, like Code A = certain set of numbers, Code B = another?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1912405/trying-to-sort-core-data-objects-by-date-in-table-view 1 Trying to sort Core Data objects by date in table view Connor 2009-12-16T04:59:56Z 2009-12-16T05:04:34Z <p>So I've got a Core Data setup where each object has an NSDate, and a method that returns the date as a string (ie, "12/15/2009"). The objects are displayed in a table view, and I'd like to sort them into sections based on the date string. Apple's example code in the CoreDataBooks app uses this line:</p> <pre><code>NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:managedObjectContext sectionNameKeyPath:@"author" cacheName:@"Root"]; </code></pre> <p>So I altered it and used this line in my project:</p> <pre><code>NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:managedObjectContext sectionNameKeyPath:@"workoutDateString" cacheName:@"Root"]; </code></pre> <p>Where "workoutDateString" is the method that returns a workout object's date as a string. My core data setup works perfectly when I leave sectionNameKeyPath as nil, and I also know that my workoutDateString method works correctly. But when I set sectionNameKeyPath to workoutDateString, not only does it not display the section titles, but every time I add a workout object, the program crashes with this error:</p> <pre><code>Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 1. The number of rows contained in an existing section after the update (3) must be equal to the number of rows contained in that section before the update (1), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted).' </code></pre> <p>This is my first real iPhone project and I don't have any experience with setting up table sections. And trust me, I have spent quite a bit of time on Google looking for solutions.</p> http://stackoverflow.com/questions/1909195/bindings-master-detail-array-controllers 1 Bindings - master detail array controllers Ben Packard 2009-12-15T17:53:28Z 2009-12-16T02:08:45Z <p>I really hope someone can help on this because I'm learning cocoa and have hit a road block.</p> <p>I am trying to model a simple poker tournament. For now, my entities are simply a Tournament (with a number) and a Player (with a Name). A Tournament has an array of Players.</p> <p>I can bind two independent table views to display the tournaments and the players just fine. But I want the players table view to just show the players that belong to the selected tournament from the first table view.</p> <p>Each has it's own array controller. I have tried a variety of different bindings for the second (players) table but to no avail. Has anyone accomplished this? If so maybe you could spell it out for me, as I there are few examples online.</p> <ul> <li>Update I can now ALMOST get where I need to, mostly through rial and error and hours of googling. I have bound the player AC's content to the tournament AC, with controller key 'selected objects' and Model Key Path 'players', which is the name of the array in my Tournament entity.</li> </ul> <p>I have the bound the column in the players table view to this second Player AC, controller key arranged objects. But what to put in the Model Key Path? I know it is working because if I stick @count in there I get the correct number of players for the selected tournament. But 'name' and 'player.name' are no good. Is there any kind of 'item.name' or 'players.item.name' I can try?</p> <p>Sooo close, thanks for the help so far: <img src="http://i50.tinypic.com/s30oq0.png" alt="alt text"></p> http://stackoverflow.com/questions/1910068/mysql-query-multiple-identical-dynamic-tables 0 MySql: Query multiple identical dynamic tables. JYelton 2009-12-15T20:12:23Z 2009-12-15T21:40:38Z <p>I have a database with 500+ tables, each with identical structure, that contain historical data from sensors. I am trying to come up with a query that will locate, for example, all instances where sensor n exceeds x. The problem is that the tables are dynamic, the query must be able to dynamically obtain the list of tables.</p> <p>I can query information_schema.tables to get a list of the tables, like so:</p> <pre><code>SELECT table_name FROM information_schema.tables WHERE table_schema = 'database_name'; </code></pre> <p>I can use this to create a loop in the program and then query the database repeatedly, however it seems like there should be a way to have MySql do the multiple table search.</p> <p>I have not been able to make a stored procedure that works, but the examples I can find are generally for searching for a string in any column. I want to specifically find data in a specific column that exists in all tables. I admit I do not understand how to properly use stored procedures nor if they are the appropriate solution to this problem.</p> <p>An example query inside the loop would be:</p> <pre><code>SELECT device_name, sensor_value FROM device_table WHERE sensor_value &gt; 10; </code></pre> <p>Trying the following does not work:</p> <pre><code>SELECT device_name, sensor_value FROM ( SELECT table_name FROM information_schema.tables WHERE table_schema = 'database_name' ) WHERE sensor_value &gt; 10; </code></pre> <p>It results in an error: "Every derived table must have its own alias."</p> <p>The goal is to have a list of all devices that have had a given sensor value occur anywhere in their log (table).</p> <p>Ultimately, should I just loop in my program once I've obtained a list of tables, or is there a query structure that would be more efficient?</p> http://stackoverflow.com/questions/1910478/centering-text-within-a-multirow-cell-in-latex 0 Centering Text within a Multirow Cell in LaTex Paul 2009-12-15T21:20:58Z 2009-12-15T21:39:48Z <p>This is probably best explained with an example. I have the following table, where the "A" cell spans two rows, and the "B" cell spans two columns.</p> <pre><code>\begin{table}[htdp] \begin{tabular}{l|r|r} \multirow{2}{*}{A} &amp; \multicolumn{2}{c}{B} \\ &amp; B1 &amp; B2 \\ a &amp; b1 &amp; b2 \\ a &amp; b1 &amp; b2 \\ \end{tabular} \end{table} _ _ _ _ _ _ _ _ _ _ _ _ |A |_ _ _ _B_ _ _ _| |_ _ _ _|_ _B1_ |_ _B2_ | |a | b1| b2| |a | b1| b2| |a | b1| b2| |_ _ _ _| _ _ _ |_ _ _ _| </code></pre> <p>I would like to center the text in the "A" cell, only. I would like to leave the rest of the column left-aligned. Giving:</p> <pre><code> _ _ _ _ _ _ _ _ _ _ _ _ | A |_ _ _ _B_ _ _ _| |_ _ _ _|_ _B1_ |_ _B2_ | |a | b1| b2| |a | b1| b2| |a | b1| b2| |_ _ _ _| _ _ _ |_ _ _ _| </code></pre> <p>I'm sure this must be simple to do, but I can't seem to put my finger on it.</p>