search for: thead

Displaying 20 results from an estimated 97 matches for "thead".

Did you mean: head
2005 Dec 18
2
Create dynamic search with table rows
I''m trying to create a dynamic search function to filter the list results using form_remote_tag. I need this to work with a table data output. So it would update the partial template of table rows. I tried wrapping the table rows in a div tag but that wouldn''t update the table properly. Any help on this would be greatly appreciated. Here is my code: <%=
2006 Mar 08
4
ajax with tables
There may be an easy solution, but I just can''t seem to get this to work... I''m using tables for part of my site, as they contain a lot of rows and columns full of financial data, so just working with div''s and dd''s... etc, won''t do. My table structure is pretty simple, as follows: ================= <table id="items"> <tr>
2006 Oct 19
2
OT :JavascriptSortableTables
I found this on the rails wiki http://www.kryogenix.org/code/browser/sorttable/ Looked farily easy, class and id for the table. Dropped the JS in to application.js. Problem is it''s putting the sort link on the first row of data and not on <thead> Anyone know how to fix it ? Here''s a bit of my table: <table class="sortable" id="poso"> <thead> <th style="white-space: nowrap">Date</th> <th style="white-space: nowrap">Reference Number</th> <th style=&...
2015 Feb 27
1
[LLVMdev] Jump Theading/GVN bug - moving discussion to llvm-dev
>> define void @f() { >> bb0: >> ret void >> bb1: >> %a = getelementptr inbounds i8* %b, i64 1 >> ret void >> bb2: >> %b = getelementptr inbounds i8* %a, i64 1 >> ret void >> } >> >> Since bb1 dominates bb2 and bb2 dominates bb1, no? > > I think this a great example of how our current definition is
2015 Feb 25
2
[LLVMdev] Jump Theading/GVN bug - moving discussion to llvm-dev
> Maybe. > My view is the ideal is either no-unreachable code, or unreachable blocks > only contain terminators. I am definitely happy with both. What worries me is introducing a special dominance rule for unreachable blocks. >> I don't think that rejecting >> >> %a = getelementptr inbounds i8* %a, i64 1 >> >> but accepting >> >> %a =
2015 Feb 24
2
[LLVMdev] Jump Theading/GVN bug - moving discussion to llvm-dev
> Programmers don't usually write code like this directly, but it is common > for it to happen as a result of the expansion of macros or inline functions. > You would not want to require that a compiler front end *not* produce this. I meant to say that whatever mechanism we use to track dead blocks that may exhibit edge-cases of SSA def-use behavior does *not* need to be clever
2015 Feb 24
3
[LLVMdev] Jump Theading/GVN bug - moving discussion to llvm-dev
> Handling unreachable code is annoying. I agree. However, its important to > characterize how annoying. Most code is not unreachable, and we're > (obviously) fine just bailing on such crazy code paths. So in practice the > common cost is keeping a local set to detect cycles in the graph where we > aren't expecting them. We are essentially always traversing a linked list
2015 Feb 25
2
[LLVMdev] Jump Theading/GVN bug - moving discussion to llvm-dev
On 25 February 2015 at 10:58, Daniel Berlin <dberlin at dberlin.org> wrote: > > > On Wed, Feb 25, 2015 at 6:26 AM, Rafael EspĂ­ndola > <rafael.espindola at gmail.com> wrote: >> >> > Maybe. >> > My view is the ideal is either no-unreachable code, or unreachable >> > blocks >> > only contain terminators. >> >> I am
2015 Feb 25
0
[LLVMdev] Jump Theading/GVN bug - moving discussion to llvm-dev
On 02/25/2015 10:41 AM, Rafael EspĂ­ndola wrote: >>> all the zero paths from entry to %a pass by %b. >> >> That is a graph-wise definition, sure. >> So, this is an interesting definition, and maybe this is part of the source >> of the problem. >> >> For SSA, at least GCC requires that both "definition block dominates use >> block" (which
2006 Feb 02
3
dynamic addition of table rows
Hi, I have a table laid out something like this: <table> <thead> <tr> <th>col 1</th> <th>col 2</th> </tr> </thead> <tbody id="tablebody"> <tr> <td>moo</td> <td>moo</td> </tr> <tr> <td>moo</td> <td>moo</td>...
2010 Aug 01
0
Picking Part of Large R Object
Dear All, I have imported an HTML document to R (called tables) and wish to select certain pieces of it for processing. The first few lines of the object appear as follows: > tables [[1]] <table id="fs-table" class="gf-table rgt"> <thead> <tr><th class="lm lft nwp"> In Millions of USD (except for per share items) </th> <th class="rgt"> 3 months ending 2010-06-30 </th> <th class="rgt"> 3 months ending 2010-03-31 </th> <th class="rgt"> 3 mo...
2006 Aug 03
1
OT: Tables and Rails code
...;'m placing the code and not so much my HTML. Ideas, solutions appreciated: <h1> Current job openings</h1> <% for position in @positions -%> <div id="itsthetable"> <table summary="MyCompany"> <caption>Current postings</caption> <thead> <tr> <th scope="col">Custom ID</th> <th scope="col">Company</th> <th scope="col">First entered</th> <th scope="col">Started on</th> <th scope="col">Post length</th> <th scope=&...
2006 Apr 21
13
Sorttable.js
...org/code/browser/sorttable/ It seems straigh forward to use but i cant get it to work. I have included in the head <script src="javascripts/sorttable.js" type="text/javascript"></script> In the View <table class="sortable" id="anyid"> <thead> <th>Numbers</th> <th>Alphabet</th> <th>Dates</th> <th>Currency</th> </thead> <tr> <td>1</td> <td>Z</td> <td>01-01-2006</td> <td>&euro; 5.00</td> </tr> <tr>...
2005 Sep 14
13
table sorting/manipulation library?
...s library makes no attempt to do so, instead assuming the designer can tell it how to sort by giving it a function for each sortable column that returns a value to be sorted. An example: ----------------- <table id="myTable" class="sortable striped rowsSelectable"> <thead><tr><th>string</th><th>number</th><th>date</th></tr></thead> <tfoot /> <tbody> .......... </tbody> </table> <script type="text/javascript"> document.getElementById(''myTable'').sorterFu...
2015 Feb 24
3
[LLVMdev] Jump Theading/GVN bug - moving discussion to llvm-dev
On 24 February 2015 at 02:05, Chandler Carruth <chandlerc at google.com> wrote: > Will try to reply to the larger thread again soon, but a quick reply on a > bit of a tangent... > > On Mon, Feb 23, 2015 at 8:45 PM, Hal Finkel <hfinkel at anl.gov> wrote: >> >> 2. Should unreachable code be allowed to contain nonsense (like >> instructions that depend on
2015 Feb 25
4
[LLVMdev] Jump Theading/GVN bug - moving discussion to llvm-dev
>> all the zero paths from entry to %a pass by %b. > > > That is a graph-wise definition, sure. > So, this is an interesting definition, and maybe this is part of the source > of the problem. > > For SSA, at least GCC requires that both "definition block dominates use > block" (which would be true here), *and* > that "definition appears before use in
2006 Jul 14
3
Rails newbie: How does the submit_tag work?
...;tr><td><h3>Question <%= @question.seq %></h3></td></tr> <tr><td><%= @question.presentation.textvalue %></td></tr> </table> <table cellpadding="3" cellspacing="0" id="answersTable"> <thead> <tr> <td></td> <td>Check</td> <td></td> <td>Possible Answers</td> </tr> </thead> <tbody id="answersBody"> <% if !@question.id.nil? answers = Answers.find (:all...
2006 Mar 09
1
Rails File Upload w/ Ajax Update?
...none"><%= upload_status_tag %></div> <%= end_form_tag %> <div id="message"><%= @message %></div> </div> <table id="resources-list" cellspacing="1" cellpadding="1" width="100%"> <thead> <tr class="header" style="text-align: left;"> <th>Filename <small>(right-click for link)</small></th> <th>Uploaded By</th> <th>Uploaded At</th> <th>Content Type</th> <th>File Size</th>...
2015 Feb 24
6
[LLVMdev] Jump Theading/GVN bug - moving discussion to llvm-dev
....gov>, "Rafael > Espindola" <rafael_espindola at playstation.sony.com>, "Sanjoy Das" <sanjoy at playingwithpointers.com>, "David Majnemer" > <david.majnemer at gmail.com> > Sent: Monday, February 23, 2015 10:32:30 PM > Subject: Re: Jump Theading/GVN bug - moving discussion to llvm-dev > > > So, first things first. > > > Handling unreachable code is annoying. I agree. However, its > important to characterize how annoying. Most code is not > unreachable, and we're (obviously) fine just bailing on such crazy...
2012 May 26
3
Problem with readHTMLTable
Hello All, i was trying to simply run the readHTMLTable on the example published in the package. And on a page I was working on. So running: u = "http://en.wikipedia.org/wiki/List_of_countries_by_population" tables = readHTMLTable(u) returns the following error: Error in tb[["thead"]] : subscript out of bounds looking up this error on the web, didnt give me any hint. Is something wrong with this function? this is my sessioninfo: > sessionInfo() R version 2.14.1 (2011-12-22) Platform: i386-pc-mingw32/i386 (32-bit) locale: [1] LC_COLLATE=English_United Kingdom.125...