User Bill James - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T09:05:00Zhttp://stackoverflow.com/feeds/user/13824http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1791560/how-do-you-manage-developing-with-multiple-versions-of-grails-using-windows/1792530#17925302Answer by Bill James for How do you manage developing with multiple versions of Grails using Windows?Bill James2009-11-24T19:56:45Z2009-11-24T19:56:45Z<p>IntelliJ allows you to specify which version of Grails to apply as a per-project facet configuration. The Eclipse plugin has yet to achieve this level of abstraction.</p>
http://stackoverflow.com/questions/1772848/adding-a-class-to-html-element-conditionally-with-grails-tags/1773030#17730303Answer by Bill James for Adding a class to html element conditionally with grails tagsBill James2009-11-20T20:24:51Z2009-11-21T17:41:03Z<p>Easy enough:</p>
<pre><code><div class="aSection ${someBean?.aCondition ? 'shownItem':'hiddenItem'}">
...
</div>
</code></pre>
<p>You can use ${} blocks inside html attributes, no problem, just be sure not to use any double-quotes in your expression block, as that confuses things.</p>
http://stackoverflow.com/questions/1736338/list-gsp-filenotfoundexception-when-following-grails-scaffolding-tutorial-with-ap/1736406#17364061Answer by Bill James for list.gsp FileNotFoundException when following Grails scaffolding tutorial with app-engine pluginBill James2009-11-15T02:53:23Z2009-11-15T02:53:23Z<p>I just re-created your scenario with the following steps, using Grails 1.1.1:</p>
<pre><code>grails create-app XXX
cd XXX
grails create-domain-class XXX.Card
grails create-controller XXX.Card
-- Edited grails-app\Controllers\XXX\Card.groovy removing the index action and adding the scaffold declaration "def scaffold = Card"
grails run-app
</code></pre>
<p>When I visited <a href="http://localhost:8080/XXX/card" rel="nofollow">http://localhost:8080/XXX/card</a>, I was given the appropriate list page for the Card class (which had no entries, and no columns, since I hadn't added anything to Card)</p>
<p>Note the lowercase "card" (you seem to have it correct), this is important. Controller paths in the URL are defaulted to start with a lower case.</p>
<p>Hope this helps. If you can't follow these steps and get it to work, I'd look at those plugins you installed.</p>
http://stackoverflow.com/questions/203174/whats-a-good-java-api-for-creating-word-documents7What's a good Java API for creating Word documents?Bill James2008-10-14T23:09:59Z2009-11-05T14:46:13Z
<p>I have a new app I'll be working on where I have to generate a Word document that contains tables, graphs, a table of contents and text. What's a good API to use for this? How sure are you that it supports graphs, ToCs, and tables? What are some hidden gotcha's in using them?</p>
<p>Some clarifications:</p>
<ul>
<li>I can't output a PDF, they want a Word doc.</li>
<li>They're using MS Word 2003 (or 2007), not OpenOffice</li>
<li>Application is running on *nix app-server</li>
</ul>
<p>It'd be nice if I could start with a template doc and just fill in some spaces with tables, graphs, etc.</p>
<p>Thanks for the help.</p>
<p>Edit: Several good answers below, each with their own faults as far as my current situation. Hard to pick a "final answer" from them. Think I'll leave it open, and hope for better solutions to be created.</p>
<p>Edit: The OpenOffice UNO project does seem to be closest to what I asked for. While POI is certainly more mainstream, it's too immature for what I want.</p>
http://stackoverflow.com/questions/1489540/one-to-one-mapping-in-grails/1499379#14993790Answer by Bill James for One-To-One mapping in GrailsBill James2009-09-30T16:51:51Z2009-09-30T16:51:51Z<p>Agree with leebuts, Grails will expect a separate FK ID field in the subsidiary table.</p>
<p>This table setup looks more like table-per-class inheritance. You might be able to create a class TableB that <em>inherits</em> class TableA, where TableA contains Notes and TableB contains "data". Grails will probably also want a discriminator column in TableB, but otherwise it looks like the tables would conform to Grails conventions for inheritance.</p>
<p>Take a look: <a href="http://grails.org/GORM+-+Mapping+DSL" rel="nofollow">http://grails.org/GORM+-+Mapping+DSL</a></p>
<p>Look for the way to turn off table-per-hierarchy</p>
http://stackoverflow.com/questions/1444924/grails-supplying-data-to-a-global-ui-element/1449833#14498330Answer by Bill James for Grails: Supplying Data to a Global UI ElementBill James2009-09-19T23:50:55Z2009-09-20T16:19:26Z<p>I think you're trying to ask... "How do I feed the category data to the view when I don't know which action caused the page to render, so the action can't add the data to the model?" If that's so, you can use Groovy code directly in the ${} block, such as:</p>
<pre><code><g:each in="${ Category.findAll() }" var="cat" />
</code></pre>
<p>Note that findAll is added to every Model class, and can be called statically (via the classname, not an instance).</p>
<p>Hope this helps</p>
http://stackoverflow.com/questions/1122640/parameterized-grails-validation-messages/1132424#11324240Answer by Bill James for parameterized Grails validation messagesBill James2009-07-15T16:20:07Z2009-07-15T16:20:07Z<p>You're right, I've never found any documentation of that either. Best bet? Change your messages to something like:</p>
<pre><code>User.password.size=0:{0}, 1:{1}, 2:{2}, etc...
</code></pre>
<p>and see what you get for each one you're interested in. If you posted that info to the Nabble message board on Grails, I'm sure it would find it's way into the documentation.</p>
<p>Good luck.</p>
http://stackoverflow.com/questions/1074334/grails-retrieve-bean-from-flow-scope/1083409#10834091Answer by Bill James for Grails: retrieve bean from flow scopeBill James2009-07-05T03:36:01Z2009-07-05T03:36:01Z<p>I'm not sure how you'd do this exactly the way you state it. As you state, most times whatever variable held the key would just be converted to a string and displayed. During a WebFlow, everything below the session scope is flattened (including the request and flow scopes) and not referred to by scope-name.</p>
<p>Is there a reason they have to be put in the Flow scope directly? Would it still work for you if you put a Map in the flow scope called "storedBeans" or some such, and put your beans in the map using those generated keys? Then something like:</p>
<pre><code>${ storedBeans[ generatedKeyVar ] }
</code></pre>
<p>should return the bean your interested in.</p>
http://stackoverflow.com/questions/1002170/grails-web-flow/1010311#10103111Answer by Bill James for Grails web flowBill James2009-06-18T01:10:43Z2009-06-18T01:10:43Z<p>Hmm, it's been a bit since I did a flow, and your example is simplistic (just for being an example's sake, I hope).</p>
<p>What your missing is the initial action in the flow. Keep in mind that a "view" flow action as your showProducts is just says what to do when your showProducts gsp POSTS. It's the action that SENT you to showProducts that should create the model to be used in showProducts.gsp</p>
<pre><code>def ShoppingCartFlow = {
initialize {
action { // note this is an ACTION flow task
// perform some code
[ model: modelInstance ] // this model will be used in showProducts.gsp
}
on ("success").to "showProducts"
// it's the above line that sends you to showProducts.gsp
}
showProducts {
// note lack of action{} means this is a VIEW flow task
// you'll get here when you click an action button from showProducts.gsp
on("checkout").to "enterPersonalDetails"
on("continueShopping").to "displayCatalogue"
}
// etc. (you'll need an enterPersonalDetails task,
// displayCatalogue task, and they
// should both be ACTION tasks)
}
</code></pre>
<p>Make sense?</p>
http://stackoverflow.com/questions/1003881/grails-ignoring-id-annotation/1010289#10102890Answer by Bill James for Grails Ignoring @Id AnnotationBill James2009-06-18T01:04:46Z2009-06-18T01:04:46Z<p>Hmm, you might have gotten away with naming the Integer field id, then just putting the @Column annotation to point that property at the regexp_id column in the table.</p>
http://stackoverflow.com/questions/991896/switch-statement/991907#9919071Answer by Bill James for switch statementBill James2009-06-14T01:15:27Z2009-06-14T01:15:27Z<p>Robert's is a start, but perhaps we still want to try catch...</p>
<p>Replace your main function with:</p>
<pre><code>do
{
enterYourNumber = GetNumber();
WriteNumber(enterYourNumber);
Console.WriteLine("Do you still want to enter a number? Y/N");
shortLetter = Convert.ToChar(Console.ReadLine());
}
while (shortLetter == 'y' || shortLetter == 'Y')
</code></pre>
<p>and add this function:</p>
<pre><code>public static int GetNumber() {
boolean done = false;
int value;
while ( !done ) {
Console.WriteLine("Please enter the integer: ");
try {
value = Convert.ToInt32(Console.ReadLine());
done = true;
}
catch {
Console.WriteLine("Please enter an integer not a character");
}
}
}
</code></pre>
<p>Then remove your try catch in the main function.</p>
http://stackoverflow.com/questions/946396/compile-time-checking-in-groovy/951281#9512812Answer by Bill James for compile-time checking in GroovyBill James2009-06-04T15:28:05Z2009-06-04T15:28:05Z<p>As Cesar said, type checking is a run-time process, one of the major reasons that Groovy is slower than Java (not that that's really bad).</p>
<p>You can see why this is, right? Given the dynamic nature of Groovy, it's near-impossible to tell if String has been extended somewhere else in your code to contain a method noSuchMethod(). The same goes for member type-checking, as it's entirely possible to remove a member of one type, and add a member of another type with the <strong>same name</strong> later in code. It's probably not common, but very possible.</p>
<p>The question is, how much type checking do you really need? You're calling the method, you really should know what arguments it takes, or if the method actually exists. Using compile-time checking to save you the time of looking it up isn't a core usefulness of the compiler.</p>
http://stackoverflow.com/questions/912760/grails-acegi-plugin-personcontroller-groovy-please-explain/913404#9134042Answer by Bill James for Grails Acegi Plugin - PersonController.groovy - Please explain!Bill James2009-05-27T00:20:06Z2009-05-27T00:20:06Z<p>Well, the short answer is that it matches any key in the params map with the properties of the person object, assigning the value in the params map to the property that matches.</p>
<p>example: Let's say params.id=156 and person has a member property named id. After this call, person.id would equal 156.</p>
<p>Some notes:</p>
<ul>
<li>If there are keys in params that
don't match properties in person,
that's ok, it just won't do anything
with those.</li>
<li>If there are properties in person that don't have keys in params? Also
ok, it'll skip those too.</li>
<li>This is also very similar to creating a new Person via "new
Person( params )" or calling
"bindData( person, params )".</li>
</ul>
http://stackoverflow.com/questions/843737/count-bits-in-the-number/843755#8437551Answer by Bill James for Count bits in the number.Bill James2009-05-09T18:02:13Z2009-05-09T19:08:01Z<p>Well, of course there is, but you're not going to like it.</p>
<p>You could, of course, build a lookup table with all the correct values in it:</p>
<p>table[1] = 1, table[2] = 1, table[3] = 2, etc.</p>
<p>So, this would give you a <strong>really fast</strong> answer, but it's a completely useless solution by itself, since the table would have to be very, very large.</p>
<p>You could optimize this a bit, but it requires just a little iteration. Simply create an 8-bit version of the table solution, a mere 256-entry table, then iterate over each BYTE in the value to be checked, summing the results of the table lookup. Something like:</p>
<pre><code>short int tableLookup[256] = { 0, 1, 1, 2, 1, ... };
unsigned int valueToCheck = 89392491;
int result = 0;
while ( valueToCheck != 0 ) {
result += tableLookup[ (valueToCheck & 0xFF) ];
valueToCheck >>= 8;
}
// result should now have the correct bit count, if the table is correct.
</code></pre>
<p>Hmm, seems this is well known (and here I was doing this off the top of my head):
<a href="http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetNaive" rel="nofollow">http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetNaive</a></p>
http://stackoverflow.com/questions/573155/groovy-range-with-a-0-5-step-size/573385#5733852Answer by Bill James for Groovy range with a 0.5 step sizeBill James2009-02-21T17:08:44Z2009-05-09T17:36:25Z<p>Soo, to build on above. To test if a value val is in the range 1..n but with half values:</p>
<pre><code>def range = 2..(n*2).collect { return it/2.0 }
return range.contains( val )
</code></pre>
<p>Something like that would work, but isn't as pretty as I'd like, but it lets you build the range once and use it multiple times, if you need that.</p>
http://stackoverflow.com/questions/833612/how-to-rename-an-existing-grails-application/842786#8427860Answer by Bill James for How to rename an existing Grails applicationBill James2009-05-09T05:50:16Z2009-05-09T05:50:16Z<p>Hmm, I know it doesn't look fun, but it shouldn't be difficult (just boring) to rename the project directory, then all the files with your project name in them (you can ignore .tmproj unless you use TextMate). Finally, a quick search through all the files for your old project name to replace and you should have it.</p>
<p>Oh! First, if you're using an IDE, you'll want to remove the project from the IDE, then re-import it once you've completed your renaming procedure.</p>
<p>As far as I know, nothing project-specific is stored anywhere except the project directory and below, so it's a very finite set to search, and you only have to do this once (I hope).</p>
<p>Not very elegant, I know, but brute force does have its uses.</p>
http://stackoverflow.com/questions/823137/grails-dynamic-scaffold-with-hasmany-is-it-a-bug-or-am-i-misconfiguring/823560#8235601Answer by Bill James for Grails dynamic scaffold with hasMany: is it a bug or am I misconfiguring?Bill James2009-05-05T06:10:08Z2009-05-05T22:59:52Z<p>Yes, the default scaffolding puts a parent selector in the child class' create/edit page.</p>
<p>I'm guessing it was just easier for them this way. It shouldn't be a multi-select though, just a pull-down single-select, as it's a One-to-Many.</p>
<p>As you've explained you wanted more of a Many-to-Many relationship, you might try adding:</p>
<pre><code>static hasMany = [teams:Team]
</code></pre>
<p>to your Player class. I've found that Grails does better with bi-directional relationships. It's also useful to have when building search queries, and shouldn't require more than the one relationship table you'd already need.</p>
<p>If you're using Grails pre-v1.1, Many-to-Many relationships aren't directly supported, so even adding the static hasMany above won't be the complete solution, as you'll need to manage adding to the other list when you add to one direction. I haven't used v1.1 yet, so I can't talk about what is needed to specify the Many-to-Many in it.</p>
http://stackoverflow.com/questions/794357/class-cast-exception-in-groovy/794400#7944002Answer by Bill James for Class cast exception in GroovyBill James2009-04-27T17:03:21Z2009-04-27T17:03:21Z<p>I found a similar question on Nabble:</p>
<p><a href="http://www.nabble.com/MySQL-and-Blobs-td16116885.html" rel="nofollow">http://www.nabble.com/MySQL-and-Blobs-td16116885.html</a></p>
<p>Two possible solutions are suggested:</p>
<ul>
<li>Change the constraints of the blob property to a large max-size, to stop it from using "TinyBlob".</li>
<li>Use the Hibernate Blob implementation instead of byte[] for the property's type declaration. This will require you stream data into the Blob, instead of direct assignment, but the post above gives code to do so.</li>
</ul>
http://stackoverflow.com/questions/791837/how-stable-is-the-groovy-language/792282#7922824Answer by Bill James for How stable is the Groovy language?Bill James2009-04-27T04:56:38Z2009-04-27T04:56:38Z<p>We've got several production apps running on Grails (using Groovy as the language). So far, no issues have resulted. As for JVM compatibility, take a look at how little the JVM byte-code has changed in the last 5 years... like 1 instruction was added, and none were made obselete.</p>
<p>Will new versions of Groovy come out in the next year? Yes. Will you be required to change to them? No. Though you might want to, 1.6 is a huge speed improvement.</p>
<p>Which brings us to the major drawback of Groovy, the speed issue. Obviously, Groovy is slower than straight Java. The current number are up to 10 <strong>TIMES</strong> slower, for certain actions. That said, is your CPU the bottleneck in your app? For us, it's mostly DB access and latency. If it's the same for you, what matter if the CPU spends 200ms processing the page request instead of 35ms?</p>
<p>Is that the only problem with Groovy? Nope. Dynamic languages have refactoring difficulties, since there isn't necessarily a complete class specification anywhere in the code. However, this is partially balanced by the smaller code-size which makes it easier to find the places to modify the code.</p>
<p>Anyway, Groovy is a perfectly fine language for production uses. Mix it with Java for your "critical" code, if you fear the reliability. That's the BEST part of Groovy... how easy it mixes with Java classes.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189551#18955128Answer by Bill James for What is the best comment in source code you have ever encountered?Bill James2008-10-09T23:12:13Z2009-04-23T02:34:34Z<pre>
// The following strings are meant to be funny. Do not edit these strings
// unless you are funny, too. If you don't know if you're funny, you're
// not funny. If fewer than 2 people unrelated to you have told you that
// you're funny, you're not funny.
</pre>
http://stackoverflow.com/questions/770709/groovy-jpa-spring-not-working/773745#7737452Answer by Bill James for Groovy + JPA + Spring not workingBill James2009-04-21T17:40:40Z2009-04-21T17:40:40Z<p>There's not a lot of info here, so time to guess.</p>
<p>Seems like Spring can't find the User.class file. The Groovy and Java compilers may have different output paths, and the Groovy output path may not be in your classpath, or your deployment set.</p>
<p>Check your War, is User.class in it? Is it in WEB-INF/classes/domain? If not, then the Groovy output folder doesn't seem to be in your deployment. Try changing the Groovy output folder to match your Java output folder.</p>
http://stackoverflow.com/questions/773449/beginners-problem-with-groovy-on-grails/773716#7737163Answer by Bill James for Beginners problem with Groovy on GrailsBill James2009-04-21T17:34:59Z2009-04-21T17:34:59Z<p>Well, from what I can read here, you're using SortedSet as your container type for Comments in a Post. This is fine, but you have to make Comments implement Comparable, as that's a requirement for all SortedSet-contained objects. You'd probably want your comments sorted by dateCreated anyway, so you have to SAY that somewhere (like in the compareTo function you'll need to satisfy the interface).</p>
<p>Any reason you're not just using a List? Seems like you wouldn't want to add Comments with earlier dates anyway.</p>
<p>Anyway, if this isn't it, comment and I'll take a longer look.</p>
http://stackoverflow.com/questions/752244/correct-syntax-to-add-a-mime-mapping-to-web-xml-in-a-grails-plugin/752950#7529500Answer by Bill James for Correct syntax to add a mime-mapping to web.xml in a grails pluginBill James2009-04-15T17:58:39Z2009-04-15T17:58:39Z<p>Hmm, the only thing I could find referred to a config property that must be set in order to properly access mime-types in requests:</p>
<pre><code>grails.mime.file.extensions = true
</code></pre>
<p>Try making sure this is set to true, and then try it again with the code that works?</p>
http://stackoverflow.com/questions/731120/convert-byte-array-to-wav-java/731136#7311362Answer by Bill James for Convert byte array to .wav javaBill James2009-04-08T18:05:11Z2009-04-08T18:05:11Z<p>So, there are LOTS of .WAV formats, here's some documentation:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/WAV" rel="nofollow">http://en.wikipedia.org/wiki/WAV</a></li>
<li><a href="http://ccrma.stanford.edu/courses/422/projects/WaveFormat/" rel="nofollow">http://ccrma.stanford.edu/courses/422/projects/WaveFormat/</a> (note endian changes)</li>
<li><a href="http://www.lightlink.com/tjweber/StripWav/WAVE.html" rel="nofollow">http://www.lightlink.com/tjweber/StripWav/WAVE.html</a></li>
</ul>
<p>It's not just a stream of data bytes, but it's close... Just a bit of header and you should be good.</p>
<p>I suppose you could also use something like <a href="http://java.sun.com/j2se/1.5.0/docs/api/javax/sound/sampled/spi/AudioFileWriter.html" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/api/javax/sound/sampled/spi/AudioFileWriter.html</a></p>
http://stackoverflow.com/questions/730188/usage-of-jsf-vs-other-web-frameworks/731024#7310240Answer by Bill James for Usage of JSF vs other web frameworksBill James2009-04-08T17:36:42Z2009-04-08T17:36:42Z<p>Cons of JSF we found:</p>
<ul>
<li>The "standard" 5-phase path is very simplistic and inflexible.</li>
<li>Varying from the normal method is complex and non-intuitive</li>
<li>You simply can't use JSF without Facelets and Rich/ICEFaces.. at the LEAST, other modifications/addons are helpful (SEAM, etc.)</li>
<li>It's ok to encapsulate functionality to make things "simpler"... It's NOT ok to make it next to impossible to muck about in there when circumstances require it.</li>
<li>server-side storage of component tree is incredibly inconvenient when trying to design a client-side-reactive page.</li>
</ul>
<p>We've moved to Groovy/Grails here. The "default" convention is easy to understand and easy to bypass when necessary. Conventions also apply to modifying the framework (no multi-xml/code file changes). I have yet to need to modify an XML file by hand at all. It's just easier to work with, and is flexible enough for what we need.</p>
<p>Grails incorporates Spring WebFlow and Hibernate, only you don't have to modify XML; Grails coding conventions are converted during compile/run time.</p>
http://stackoverflow.com/questions/661020/grails-eclipse-plugin/663883#6638836Answer by Bill James for Grails Eclipse pluginBill James2009-03-19T20:17:18Z2009-03-19T20:17:18Z<p>Current IDE status for Grails dev:</p>
<ol>
<li>IntelliJ Idea still the best, but costly</li>
<li>NetBeans 6.5 is MUCH better than 6.1, but released before v1.1, unsure what the 1.1 changes may have done to this.</li>
<li>Eclipse is still far behind. However, SpringSource is a major player in Eclipse, and they now own GOne, the main developers of Groovy/Grails. This is supposed to have the effect of speeding Eclipse plug-in development, but no results so far.</li>
</ol>
http://stackoverflow.com/questions/622759/variable-naming-conventions-for-maps-lists/623876#6238761Answer by Bill James for Variable Naming Conventions For Maps / ListsBill James2009-03-08T16:51:55Z2009-03-08T16:51:55Z<p>This is something you'll outgrow over time. Not to say I don't know a 20-year programmer still using Hungarian, but he's coding in a static-typed language, so it's almost understandable.</p>
<p>Consider this. That variable you're naming might be a HashMap, so what type do you add to the name? Map? This is a middle-of-the-road answer. Why not Collection? Since that way if you decide to change the WAY the data is stored, you don't have to change the variable name. Why not HashMap, if you really want to let the reader know what's going on.</p>
<p>As you may suspect, none of these are necessary. The point of a dynamic language (and even of polymorphism) is that you don't need to know the exact type of the variable being presented, only the data itself is important. While you might like a hint as to how to interface to that data, you'll soon find you already know in most cases, or can easily put that info in the variable without specifying types: addressesByZipCode, totalByBirthdate, etc.</p>
http://stackoverflow.com/questions/602918/why-is-my-javascript-function-not-found-by-the-page-it-is-embedded-in/602930#6029304Answer by Bill James for Why is my javascript function not found by the page it is embedded in?Bill James2009-03-02T16:19:30Z2009-03-02T16:25:26Z<p>This can also occur if there is a syntax error earlier in your javascript code. Often this will just be interpreted as the function not existing (nor any function AFTER the error). Check the code above this code (if there is any) and this code for syntax errors.</p>
<p>A way to tell if the cache error is it is to open Firebug and view the Script source. If the page was cached, you won't see your code. If it loaded but has syntax errors, the code will show, though it won't "find" it.</p>
http://stackoverflow.com/questions/601152/is-a-finally-block-without-a-catch-block-a-java-anti-pattern/601167#601167-3Answer by Bill James for Is a finally block without a catch block a java anti-pattern?Bill James2009-03-02T03:14:10Z2009-03-02T03:14:10Z<p>I'd say a try block without a catch block is an anti-pattern. Saying "Don't have a finally without a catch" is a subset of "Don't have a try without a catch".</p>
http://stackoverflow.com/questions/316790/dynamic-ids-in-jsf-seam/326389#3263892Answer by Bill James for Dynamic Id's in JSF/SeamBill James2008-11-28T18:32:04Z2009-02-27T15:47:52Z<p>You see why they don't let you set the ID, right? JSF takes over id creation because you're in a repeated loop of components and, if they let you just set the id, you'd end up with duplicate IDs, which wouldn't help you anyway.</p>
<p>Without knowing WHY you want to set the ID explicitly, it's hard to give you a workaround. If it's for JavaScript, you can do what Grant Wagner suggests, and let JSF give you what it put as the id. You can also take a peek at the generated HTML and see what format the id is in. JSF usually uses </p>
<pre><code>"form_id:loop_id:loop_index:component_id"
</code></pre>
<p>as the id it generates for components in a form/repeat. You'd have to be sure and give id's to your form and ui:repeat tags to know what they were.</p>
<p>Ok, you answered that you want to have an h:message tag for a specific inputText inside the loop, that's easy.</p>
<pre><code><h:inputText id="myInput" .... />
<h:message for="myInput" ... />
</code></pre>
<p>Now, messages generated for the input will be displayed in the message, and JSF will mangle the "for" attribute (though that isn't generated to HTML) just like it will the "id" attribute in the inputText so they match.</p>
<p>You can even make your OWN messages in your handler code to go to the specific h:message, but you'll need to use a call to clientId to get the target of the message, given the backing bean (not the value backing bean) of the component in question. </p>
http://stackoverflow.com/questions/1806513/probability-of-bit-streak-in-bit-listComment by Bill James on Probability of bit streak in bit list?Bill James2009-11-27T04:24:38Z2009-11-27T04:24:38ZThanks for the link @ljdupont... I'll definitely ask there.http://stackoverflow.com/questions/1806513/probability-of-bit-streak-in-bit-list/1806557#1806557Comment by Bill James on Probability of bit streak in bit list?Bill James2009-11-27T04:20:53Z2009-11-27T04:20:53ZYes, of course I can find the answer this way... but that doesn't tell me WHY the answers come out they way they do.http://stackoverflow.com/questions/1791560/how-do-you-manage-developing-with-multiple-versions-of-grails-using-windows/1792530#1792530Comment by Bill James on How do you manage developing with multiple versions of Grails using Windows?Bill James2009-11-25T02:38:53Z2009-11-25T02:38:53ZCan you cite a source? I've heard they were working on allowing it, but that configuring GROOVY version had to come first.http://stackoverflow.com/questions/1736338/list-gsp-filenotfoundexception-when-following-grails-scaffolding-tutorial-with-apComment by Bill James on list.gsp FileNotFoundException when following Grails scaffolding tutorial with app-engine pluginBill James2009-11-15T02:40:48Z2009-11-15T02:40:48ZThe URL you're trying to hit looks wrong... where is the project name in the URL? It should be <a href="http://localhost:8080/project/card" rel="nofollow">localhost:8080/project/card</a> shouldn't it? Not that the bad URL should cause the error you're seeing, though, and the error message seems to show that you've actually got an XXX in the URL.http://stackoverflow.com/questions/203174/whats-a-good-java-api-for-creating-word-documents/1681008#1681008Comment by Bill James on What's a good Java API for creating Word documents?Bill James2009-11-05T15:26:09Z2009-11-05T15:26:09Z@Kiran Sorry, no, I didn't end up using that method, as I was able to convince my customer that a dynamic, up-to-date web page was better than downloading and distributing a static msword object.http://stackoverflow.com/questions/203174/whats-a-good-java-api-for-creating-word-documents/257001#257001Comment by Bill James on What's a good Java API for creating Word documents?Bill James2009-11-04T22:47:19Z2009-11-04T22:47:19ZSo far, this is the most compatible with the toolset I asked for. I'm going to mark it "accepted". Though I fully recognize that POI is more mainstream, it just doesn't have the functionality I want yet. http://stackoverflow.com/questions/1436144/eager-loading-queries-with-gorm-hibernateComment by Bill James on eager-loading queries with GORM/HibernateBill James2009-09-21T01:48:32Z2009-09-21T01:48:32ZI've noticed this myself, but that was back when I was using Grails 1.0.4, can you specify the version of Grails you're using?http://stackoverflow.com/questions/1444924/grails-supplying-data-to-a-global-ui-element/1449833#1449833Comment by Bill James on Grails: Supplying Data to a Global UI ElementBill James2009-09-20T19:51:38Z2009-09-20T19:51:38ZWell, it's not the strictest MVC, but it's not like you're putting the SQL in there. You'll find the sample Grails stuff does this all the time. http://stackoverflow.com/questions/119312/dash-vs-underscore/119320#119320Comment by Bill James on Dash vs. UnderscoreBill James2009-09-17T02:56:40Z2009-09-17T02:56:40Zand this is your solution? Fine, what about "about_our_customers" or any of a myriad set of "abouts" I could come up with that might be relevant. Ignoring a problem != solution.http://stackoverflow.com/questions/1411143/jquery-selector-performance/1411170#1411170Comment by Bill James on jQuery selector performanceBill James2009-09-11T14:25:47Z2009-09-11T14:25:47ZHow can it "quickly decide to ignore ..." without going through the whole DOM children of someTableRow? Both of them check the same full set of children elements, one looks for td's with someColumnClass, then parses that list for spans with editMode, then parses that list for input. The other looks for all three criteria in the same search of the initial list.http://stackoverflow.com/questions/1220505/how-do-you-modify-a-domain-class-in-grails/1221977#1221977Comment by Bill James on How do you modify a Domain Class in Grails?Bill James2009-08-03T14:37:00Z2009-08-03T14:37:00ZAlso, removing a property NEVER deletes the column in Grails. I'm sure this is for safety and because they didn't want to have to "figure out" if they could delete a reference column.http://stackoverflow.com/questions/1191702/grails-xfire-cant-seem-to-send-large-blobsComment by Bill James on grails xfire can't seem to send large blobsBill James2009-07-28T22:10:05Z2009-07-28T22:10:05ZGiven that it's very easy to create your own version of the XFire service you're sending to, you should try it against your own service first. From the above, we can't tell what the proper syntax is for the saveConfig() method on the service. More info would be helpful.http://stackoverflow.com/questions/1078388/splitting-long-statement-into-2-statements-results-in-missingmethodexception/1080083#1080083Comment by Bill James on Splitting Long Statement Into 2 Statements Results In MissingMethodExceptionBill James2009-07-05T03:29:51Z2009-07-05T03:29:51ZThen perhaps you should delete the question? Since that is possible for your own questions.http://stackoverflow.com/questions/1002170/grails-web-flow/1010311#1010311Comment by Bill James on Grails web flowBill James2009-06-18T15:38:48Z2009-06-18T15:38:48ZRight, the only time you can have code (including creating a model) is in an action task or a "transition" task (between the on("") and the .to"" in view tasks)http://stackoverflow.com/questions/991896/switch-statement/991973#991973Comment by Bill James on switch statementBill James2009-06-15T15:43:31Z2009-06-15T15:43:31ZTintin, you're not checking the value of the entered character in the Y/N question... you're just reading it. Something like "if (shortLetter != 'Y') break;" will get you out of the loop if you don't type Y.