User John Paul Jones - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T07:51:03Zhttp://stackoverflow.com/feeds/user/5461http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/557747/how-to-set-div-width-height-with-javascript-in-firefox0How to set DIV width/height with Javascript in FirefoxJohn Paul Jones2009-02-17T17:05:21Z2009-08-29T10:37:48Z
<p>The following works in IE, but not Firefox:</p>
<pre><code>var el = $get('divToMask');
var box = Sys.UI.DomElement.getBounds(el);
var maskEl = $get('maskDiv');
// Only seems to work in IE
maskEl.style.width = box.width;
maskEl.style.height = box.height;
Sys.UI.DomElement.setLocation(maskEl, box.x, box.y);
</code></pre>
<p>box.width and box.height contain the correct values, but Firefox ignores the maskEl.style .width/.height methods.</p>
http://stackoverflow.com/questions/400756/does-rad-for-asp-net-exist3Does RAD for asp.net exist?John Paul Jones2008-12-30T16:32:33Z2009-08-06T22:17:05Z
<p>I've built web sites using classic ASP, ASP.NET web forms and lately ASP.NET with ExtJS. However, I've always felt that I've had to do a lot of the heavy lifting and that there was no real RAD until the application was fairly mature. </p>
<p>I've only briefly looked at RoR and Django, but they look like a step in the right direction. Does anyone feel they have the equivalent mix of .net technologies for creating web sites quickly?</p>
<p>EDIT: I wanted to stay with mainstream tools (esp. open source or 'low cost') that work with ASP.NET. Also interested in fast framework configuration/setup, as my current project took lots of initial code (my)generation template work to get it to a RAD state. </p>
http://stackoverflow.com/questions/619389/asp-net-ajax-calendar-extender-in-updatepanel-causes-wrapping/625609#6256090Answer by John Paul Jones for asp.net ajax calendar extender (in updatepanel) causes wrappingJohn Paul Jones2009-03-09T09:54:14Z2009-03-09T09:54:14Z<pre><code><style type="text/css">
ajax__calendar
{
display: inline;
}
</style>
</code></pre>
<p>seems to fix it with IE6 and FF3</p>
http://stackoverflow.com/questions/619389/asp-net-ajax-calendar-extender-in-updatepanel-causes-wrapping0asp.net ajax calendar extender (in updatepanel) causes wrappingJohn Paul Jones2009-03-06T16:13:14Z2009-03-09T09:54:14Z
<p>Here's a simplified version of my page:</p>
<pre><code><asp:UpdatePanel runat="server" ID="dateUpdatePanel" RenderMode="Inline">
<ContentTemplate>
<asp:Label runat="server" ID="lblDateFrom" Text="From:" />
<asp:TextBox runat="server" ID="txtDateFrom" />
<asp:ImageButton runat="server" ID="cmdDateFrom" ImageUrl="~/images/calendar.jpeg" />
<ajax:CalendarExtender runat="server" ID="calendarFrom" TargetControlID="txtDateFrom"
PopupButtonID="cmdDateFrom" Format="dd/MM/yyyy" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:Button runat="server" ID="cmdRunReport" Text="Run Report" OnClick="cmdRunReport_Click" />
</code></pre>
<p>The UpdatePanel is set to render inline so the "Run Report" button is displayed in line and to the right of the calendar input. However, when I click on the calendar image button (cmdDateFrom) the "Run Report" button moves and is rendered on the next line down! </p>
<p>Can any CSS gurus help?</p>
http://stackoverflow.com/questions/614542/use-linq-to-concatenate-multiple-rows-into-single-row-csv-property3Use LINQ to concatenate multiple rows into single row (CSV property)John Paul Jones2009-03-05T12:17:55Z2009-03-08T22:17:40Z
<p>I'm looking for the LINQ equivalent to the Sybase's LIST() or MySQL's group_concat()</p>
<p>It'll convert:</p>
<pre><code>User Hobby
--------------
Bob Football
Bob Golf
Bob Tennis
Sue Sleeping
Sue Drinking
</code></pre>
<p>To:</p>
<pre><code>User Hobby
--------------
Bob Football, Golf, Tennis
Sue Sleeping, Drinking
</code></pre>
http://stackoverflow.com/questions/487289/align-a-div-to-the-top-and-one-to-the-bottom-of-a-table1Align a <div> to the top, and one to the bottom of a tableJohn Paul Jones2009-01-28T11:22:24Z2009-02-25T06:40:08Z
<p>I'm having trouble with some vertical CSS positioning. I would like to create a page with the following layout:</p>
<pre><code>B AAA
AAA
AAA
C AAA
</code></pre>
<p>A is a grid (table) of data
B is aligned to the top of the grid
C is aligned to the bottom of the grid</p>
<p>How do I get B and C to align correctly?</p>
<p>EDIT: Sorry for the confusion about Div/Table tags! I'm ideally looking to do this with pure CSS, but if it's a lot of work then I'll settle for dittodhole's solution of using a table.</p>
http://stackoverflow.com/questions/491932/what-is-the-best-books-on-lisp/491948#4919484Answer by John Paul Jones for What is the best book(s) on Lisp?John Paul Jones2009-01-29T15:09:23Z2009-01-29T15:09:23Z<p>Paul Graham's books on lisp are good: <a href="http://www.paulgraham.com/books.html" rel="nofollow">http://www.paulgraham.com/books.html</a></p>
http://stackoverflow.com/questions/472488/implementation-options-of-summing-averaging-concatenating-etc-items-in-an-ienu2Implementation options of summing, averaging, concatenating, etc items in an IEnumerableJohn Paul Jones2009-01-23T10:38:58Z2009-01-23T10:45:11Z
<p>I'm looking for the shortest code to create methods to perform common operations on items in an IEnumerable.</p>
<p>For example:</p>
<pre><code>public interface IPupil
{
string Name { get; set; }
int Age { get; set; }
}
</code></pre>
<ol>
<li>Summing a property - e.g. IPupil.Age in IEnumerable<IPupil></li>
<li>Averaging a property - e.g. IPupil.Age in IEnumerable<IPupil></li>
<li>Building a CSV string - e.g. IPupil.Name in IEnumerable<IPupil></li>
</ol>
<p>I'm interested in the various approaches to solve these examples: foreach (long hand), delegates, LINQ, anonymous methods, etc...</p>
<p>Sorry for the poor wording, I'm having trouble describing exactly what I'm after!</p>
http://stackoverflow.com/questions/423503/powerbuilder-update-powerscript-on-datawindow/424452#4244522Answer by John Paul Jones for Powerbuilder - Update Powerscript on DatawindowJohn Paul Jones2009-01-08T14:39:09Z2009-01-08T14:39:09Z<p>It's been a long time since I've used PB, but isn't the .Update()'s return value simply an indicator of the command (i.e. UPDATE) being successfully performed by the DB? If this is correct then it'll return 1, when successful, even if row values are not actually changing. SqlNRows is the actual indicator of the number of changed rows.</p>
http://stackoverflow.com/questions/423840/in-statement-for-linq-to-objects0In statement for LINQ to objectsJohn Paul Jones2009-01-08T10:48:25Z2009-01-08T11:05:04Z
<p>Is there an equivalent of a SQL IN statement in LINQ to objects?</p>
http://stackoverflow.com/questions/423605/generic-method-in-a-non-generic-class1Generic method in a non-generic class?John Paul Jones2009-01-08T08:45:22Z2009-01-08T10:11:41Z
<p>I'm sure I've done this before, but can't find any example of it! Grrr...</p>
<p>For example, I want to convert an <code>IList<T></code> into a <code>BindingList<T></code>:</p>
<pre><code>public class ListHelper
{
public static BindingList<T> ToBindingList(IList<T> data)
{
BindingList<T> output = new BindingList<T>();
foreach (T item in data)
output.Add(item);
return output;
}
}
</code></pre>
http://stackoverflow.com/questions/413171/is-there-a-hidden-iteration-counter-in-this-for-loop/413662#4136620Answer by John Paul Jones for Is there a hidden iteration counter in this for loop?John Paul Jones2009-01-05T16:24:19Z2009-01-05T16:24:19Z<p>From an elegant code view it would be nice if the enumerator was available with .First() and .Last() methods.</p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/400665#400665-2Answer by John Paul Jones for How do I compress multiple files into a single archive with DelphiJohn Paul Jones2008-12-30T16:03:32Z2008-12-30T16:03:32Z<p>Shell to the command line and get a free zip program to do the work?</p>
http://stackoverflow.com/questions/387134/migrating-from-net-1-1-to-net-3-5/388648#3886481Answer by John Paul Jones for Migrating from .NET 1.1 to .NET 3.5John Paul Jones2008-12-23T11:15:31Z2008-12-23T11:15:31Z<p>Edit and continue? Also generics and nullable types makes life a little easier!</p>
http://stackoverflow.com/questions/2307/are-there-any-powerbuilder-devs-around/388622#3886220Answer by John Paul Jones for Are there any Powerbuilder devs around?John Paul Jones2008-12-23T10:54:05Z2008-12-23T10:54:05Z<p>I've used Powerbuilder v5 to v8 and had good and bad experiences with it. Essentially the datawindow is the core RAD technology and was the only reason to keep using PB. Once Sybase released DataWindow.net we used it to quickly port our PB8 apps to vb.net and are very happy with the results. VS.net is so much better than the PB IDE and as others have pointed out has a 21st century debugger!</p>
http://stackoverflow.com/questions/619389/asp-net-ajax-calendar-extender-in-updatepanel-causes-wrapping/619417#619417Comment by John Paul Jones on asp.net ajax calendar extender (in updatepanel) causes wrappingJohn Paul Jones2009-03-06T16:28:43Z2009-03-06T16:28:43ZI think it's better to have a button to popup the calendar (from a UI perspective). This makes it easier for novice users.http://stackoverflow.com/questions/614542/use-linq-to-concatenate-multiple-rows-into-single-row-csv-property/614587#614587Comment by John Paul Jones on Use LINQ to concatenate multiple rows into single row (CSV property)John Paul Jones2009-03-05T13:47:15Z2009-03-05T13:47:15ZThanks! I'm going to learn LINQ myself instead of constantly bugging you ;-)http://stackoverflow.com/questions/111341/combine-multiple-results-in-a-subquery-into-a-single-comma-separated-value/111413#111413Comment by John Paul Jones on Combine multiple results in a subquery into a single comma-separated valueJohn Paul Jones2009-03-05T12:02:13Z2009-03-05T12:02:13ZShame the columns can't be parameters. As it stands you'll need to make a function for every child relationship!http://stackoverflow.com/questions/111341/combine-multiple-results-in-a-subquery-into-a-single-comma-separated-value/111360#111360Comment by John Paul Jones on Combine multiple results in a subquery into a single comma-separated valueJohn Paul Jones2009-03-05T11:59:09Z2009-03-05T11:59:09ZSybase has also got LIST(). Come on Microsoft...http://stackoverflow.com/questions/557747/how-to-set-div-width-height-with-javascript-in-firefox/557775#557775Comment by John Paul Jones on How to set DIV width/height with Javascript in FirefoxJohn Paul Jones2009-02-18T08:44:03Z2009-02-18T08:44:03ZIt's the ASP.NET AJAX library. That did the trick... simple when you know how ;-)http://stackoverflow.com/questions/53264/what-is-the-most-beautiful-code-you-have-ever-seen-or-written/55103#55103Comment by John Paul Jones on What Is the most beautiful code you have ever seen or written?John Paul Jones2009-01-28T12:27:12Z2009-01-28T12:27:12ZWhy not flip the IsUserCampaignMember() = False section? E.G. If IsUserCampaignMember() Then DisplayAlreadyInCampaign() Else ...http://stackoverflow.com/questions/53264/what-is-the-most-beautiful-code-you-have-ever-seen-or-written/177334#177334Comment by John Paul Jones on What Is the most beautiful code you have ever seen or written?John Paul Jones2009-01-28T12:19:58Z2009-01-28T12:19:58ZNot far off FSX ;-)http://stackoverflow.com/questions/487289/align-a-div-to-the-top-and-one-to-the-bottom-of-a-table/487326#487326Comment by John Paul Jones on Align a <div> to the top, and one to the bottom of a tableJohn Paul Jones2009-01-28T12:00:02Z2009-01-28T12:00:02ZAlso width of B is variable, so I can't give A a margin of B's widthhttp://stackoverflow.com/questions/487289/align-a-div-to-the-top-and-one-to-the-bottom-of-a-tableComment by John Paul Jones on Align a <div> to the top, and one to the bottom of a tableJohn Paul Jones2009-01-28T11:41:13Z2009-01-28T11:41:13ZI'm looking for a solution that doesn't effect the grid (A). Instead I would like to wrap the grid in Div/Table tags.http://stackoverflow.com/questions/390595/best-way-to-retrieve-the-connection-string-for-ibatis-net-from-the-web-config/410215#410215Comment by John Paul Jones on Best way to retrieve the connection string for IBATIS.NET from the web.configJohn Paul Jones2009-01-28T09:39:48Z2009-01-28T09:39:48ZiBATIS.NET is almost a secret on the web ;-) Thanks for the info.http://stackoverflow.com/questions/377285/flash-for-business-web-applications-why-not/377634#377634Comment by John Paul Jones on Flash for business web applications - why not?John Paul Jones2009-01-27T16:06:40Z2009-01-27T16:06:40ZHave you tried writing an ExtJS app? The results are fantastic, but there is a lot that needs to be done to improve the development experience/speed!http://stackoverflow.com/questions/472488/implementation-options-of-summing-averaging-concatenating-etc-items-in-an-ienu/472506#472506Comment by John Paul Jones on Implementation options of summing, averaging, concatenating, etc items in an IEnumerableJohn Paul Jones2009-01-23T11:07:49Z2009-01-23T11:07:49ZThanks Jon. LINQ looks like everything I need!http://stackoverflow.com/questions/423840/in-statement-for-linq-to-objects/423875#423875Comment by John Paul Jones on In statement for LINQ to objectsJohn Paul Jones2009-01-08T11:12:01Z2009-01-08T11:12:01ZThank you! Your reputation precedes you ;-)http://stackoverflow.com/questions/423605/generic-method-in-a-non-generic-class/423629#423629Comment by John Paul Jones on Generic method in a non-generic class?John Paul Jones2009-01-08T09:03:20Z2009-01-08T09:03:20ZTrue. Thanks for tipshttp://stackoverflow.com/questions/400756/does-rad-for-asp-net-exist/401433#401433Comment by John Paul Jones on Does RAD for asp.net exist?John Paul Jones2008-12-31T16:32:26Z2008-12-31T16:32:26ZYeah, I miss those good old days of a DOS text editor and command line compilation... well actually maybe not!