Re: Grid Suggestion

2011-01-05 Thread Michael J. Sprague

I don't have any examples here at the office but I have used it on personal
projects without much trouble. View source is your friend here. Look at the
examples and you'll see the JSON used to pass data in and you can recreate
it based on that.

On Wed, Jan 5, 2011 at 11:13 AM, fun and learning
wrote:

>
> >Not sure about column freezing but I'd take a look at SlickGrid:
> >https://github.com/mleibman/SlickGrid/wiki
> >
> >On Wed, Jan 5, 2011 at 10:05 AM, fun and learning
> >wrote:
> >
> >>
> Hi Michael,
>
> Thanks for the suggestion. is there an example of using slickgrid with
> coldfusion for dynamically loading data?
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340469
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Grid Suggestion

2011-01-05 Thread Michael J. Sprague

Not sure about column freezing but I'd take a look at SlickGrid:
https://github.com/mleibman/SlickGrid/wiki

On Wed, Jan 5, 2011 at 10:05 AM, fun and learning
wrote:

>
> Hi All-
>
> Currently i have a grid with around 25 to 30 columns.
>
> a)The first 5 columns are frozen columns. The data for these columns are
> text values or simple numbers
>
> b) The values for other 25 columns are images.
>
> c) Also implementing highlight row functionality on hover and on click of
> the row.
>
> d) The database queries are very fast, but the UI rendering is very
> sluggish.
>
> The above table is right now implemented using HTML, css, javascript. Tried
> using alternatives like jqgrid, but it does not have column freezing
> functionality.
>
> Are there any other grids out there which would be a much better choice. Is
> using Flex a good idea?
>
> Thanks
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340466
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) sql help

2010-10-15 Thread Michael J. Sprague

Figured it out. I was missing a join. Should have been:

SELECT DISTINCT phases.phase AS phaseLabel,
narratives.title,
narratives.id,
narratives.content,
phases.id AS phaseId
  FROM(   (   nsftool.phases2company phases2company
   INNER JOIN
  nsftool.phases phases
   ON (phases2company.phaseId = phases.id))
   INNER JOIN
  nsftool.narratives narratives
   ON (narratives.phase = phases.id))
   INNER JOIN
  nsftool.narratives2case narratives2case
   ON (narratives2case.narrativeId = narratives.id)
  AND (phases2company.caseId = narratives2case.caseId)
 WHERE (narratives2case.caseId = )
ORDER BY phases2company.displayRank ASC, narratives.displayRank ASC

On Fri, Oct 15, 2010 at 1:35 PM, Michael J. Sprague
wrote:

>
> I am having a SQL problem that I'm guessing amounts to me just being brain
> dead today but I'd really appreciate any help with this. Here is the query:
>
> SELECT phases.phase AS phaseLabel,
>   narratives.title,
>   narratives.id,
>   narratives.content,
>   phases.id AS phaseId
>  FROM((   nsftool.narratives2case narratives2case
>   INNER JOIN
>  nsftool.narratives narratives
>   ON (narratives2case.narrativeId = narratives.id))
>   INNER JOIN
>  nsftool.phases2case phases2case
>   ON (phases2case.caseId = narratives2case.caseId))
>   INNER JOIN
>  nsftool.phases phases
>   ON (phases2case.phaseId = phases.id)
>  WHERE (narratives2case.caseId =  null="no" value="#trim(caseId)#" />)
> ORDER BY phases2case.displayRank ASC, narratives.displayRank ASC
>
> It is almost working but it is currently returning the same narrative
> titles
> and content for each phaseId. What I need to do is return the phases for a
> particular case ordered by their phase display rank and return the
> associated narrative content ordered by the narrative display rank.
> Currently it returns the same set of narrative content for each phase. Any
> ideas?
>
> Thanks in advance for any help with this.
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338239
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


(ot) sql help

2010-10-15 Thread Michael J. Sprague

I am having a SQL problem that I'm guessing amounts to me just being brain
dead today but I'd really appreciate any help with this. Here is the query:

SELECT phases.phase AS phaseLabel,
   narratives.title,
   narratives.id,
   narratives.content,
   phases.id AS phaseId
  FROM((   nsftool.narratives2case narratives2case
   INNER JOIN
  nsftool.narratives narratives
   ON (narratives2case.narrativeId = narratives.id))
   INNER JOIN
  nsftool.phases2case phases2case
   ON (phases2case.caseId = narratives2case.caseId))
   INNER JOIN
  nsftool.phases phases
   ON (phases2case.phaseId = phases.id)
 WHERE (narratives2case.caseId = )
ORDER BY phases2case.displayRank ASC, narratives.displayRank ASC

It is almost working but it is currently returning the same narrative titles
and content for each phaseId. What I need to do is return the phases for a
particular case ordered by their phase display rank and return the
associated narrative content ordered by the narrative display rank.
Currently it returns the same set of narrative content for each phase. Any
ideas?

Thanks in advance for any help with this.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338238
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looking for a CF 8 host

2009-11-25 Thread Michael J. Sprague

I've had great luck with GearHost http://www.gearhost.com


On Wed, Nov 25, 2009 at 1:29 PM, Charlie Griefer
wrote:

>
> If you've got enough clients to justify it, you could get a CF8 VPS.  I
> believe prices range from $35/mo to $75/mo (depending on various factors).
>
> Even if it cost you $75 a month, and you had 5 clients, you'd break even if
> you charged each $15/month.  And for all intents and purposes, it's your
> own
> server.
>
> FWIW, I've heard good things about kickass VPS.
>
> http://kickassvps.com/services/windows_vps/plans.php
>
> On Wed, Nov 25, 2009 at 10:23 AM, Larry Soo  wrote:
>
> >
> > Well, it's been a long time since I've participated on this list...I'm
> > still using CF 6.1 MX.  Haven't been doing full-time web dev for the past
> 6
> > yrs or so but now I'm trying to do it full-time again.  Spent a couple of
> > months learning ASP.NET but am not impressed.  Lots of cool demos and
> > samples but once you try to take full control of the details and layout,
> it
> > seems to me that you get back into the same hand-coding that you do with
> > PHP and Coldfusion.  So for the time being, I'm going to experiment with
> CF
> > 8 and its Ajax and image handling features (things I've wanted built into
> > CF for a long time).
> >
> > Anyway...that means I also need to find a CF 8 host.  I've found some
> > highly recommended hosts starting at USD$25.  But are there any
> affordable
> > but good CF8 hosts in the USD$15 range?   Most of my clients don't have a
> > problem with $25/mo but some do so I need an alternative.
> >
> > Thanks in advance for your help!
> >
> > ...lars
> >
> >
> >
> >
> >
> >
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328683
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Twitter oAuth

2009-04-08 Thread Michael J. Sprague

+1 I'd also be interested in the details

On Wed, Apr 8, 2009 at 11:41 AM, Tony  wrote:

>
> id love to read it if you could put that together.
>
> tw
>
> On Tue, Apr 7, 2009 at 8:40 PM, Philip Kaplan  wrote:
> >
> > In case anyone's interested, I figured it all out with the help of some
> > off-list folks.  Contact me if you need help with this.
> > Perhaps I will write a quick Twitter/ColdFusion/oAuth manual in the
> future.
> >
> > On Mon, Apr 6, 2009 at 7:00 PM, Philip Kaplan  wrote:
> >
> >> Anyone here have any experience with oAuth?  Or better yet with
> Twitter's
> >> oAuth implementation?
> >> I'm just not making any headway.  I've downloaded this:
> >> http://oauth.riaforge.org/
> >>
> >> But there's very little documentation on the CF oAuth side or on the
> >> Twitter side.
> >>
> >> Anyone ever get oAuth to work?  I don't really know where to start.
> >>
> >>
> >
> >
> >
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321453
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: pop-up calendar selector

2007-05-09 Thread Michael J. Sprague
If you don't want to use the one built into CFFORM then I would suggest 
either the one that's part of ExtJS (http://www.extjs.com) which can be 
used in conjunction with YUI, jQuery or Prototype/Scriptaculous or 
another great option, which is library agnostic, is the Dynarch 
JSCalendar (http://www.dynarch.com/projects/calendar).

Mike

Mike | NZSolutions Ltd wrote:
> Sorry for the OT...
>
> Just trying to get my hands on a simple pop-up calendar for selecting a date
> field. Something that is easy to apply a stylesheet to.
>
> Don't mind investing in a good one if needed.
>
> Regards
> mike
>
>
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277559
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion and script.aculo.us

2006-09-01 Thread Michael J. Sprague
I've been using Scriptaculous/Prototype with ColdFusion for several 
months now and am very happy with it. I'm not familiar with how AjaxCFC 
handles it's calls to CFCs but I typically write cfm pages that call the 
CFC methods i need and handle and display logic if necessary. If you 
want to call the CFC directly just make sure that both the component and 
the method have access set to remote and pass it the arguments it needs 
as query string parameters.

Robertson-Ravo, Neil (RX) wrote:
> Anyone using it with script.aculo.us? Are you calling CFCs much the same way
> as you can with AjaxCFC etc?

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:251776
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4