Skip to main content
Participant
July 1, 2007
Question

i want three columns not two!

  • July 1, 2007
  • 7 replies
  • 486 views
hi there, i am using cartweaver and I'm not really familiar (at all) with cold fusion, and i need help tweaking this document to display three columns and not two. any help would be greatly appreciated thanks!
    This topic has been closed for replies.

    7 replies

    Prasanth_Kumar_S
    Inspiring
    July 2, 2007
    Do you really want three columns or three pages? In case of columns, you have only specified two columns. what data to be displayed on third column?
    Inspiring
    July 2, 2007
    which version of CW are you using? on their website it says in ver 3
    this is set in something called Site Admin...

    ---
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com
    sawcmomAuthor
    Participant
    July 2, 2007
    thanks for the idea, but their response team responds in something like, 1-0 days- and they aren't very helpful :( tried that first! i'll just keep hunting, thanks for the ideas.
    sawcmomAuthor
    Participant
    July 2, 2007
    well attached is the table that the results fall into, so i thought that the answer would lie here if it's a matter of configuring the table manually?
    Participating Frequently
    July 2, 2007
    You might like to ask about this over on the cartweaver support forum at news://cartweaver.support.com/ColdFusion

    cheers
    Participating Frequently
    July 2, 2007
    Hi, I know nothing about cartweaver but some quick googling would suggest the application variables are populated from a config table which is probably why you're having trouble finding where its being set.

    Presumably, if this is true, then there must be some method available for updating these values - or you could just edit the table values manually.

    cheers.
    sawcmomAuthor
    Participant
    July 2, 2007
    can you tell me what it might look like? here are the results i got:


    <cfset NumberOfColumns = Application.NumberOfColumns />
    <cfset NumberOfColumns = Application.NumberOfColumns />
    <cfset ColWidth = Fix(100/NumberOfColumns) />
    <cfif NumberOfColumns GT 1>
    <cfif ColsOutput EQ NumberOfColumns OR CurrentRow EQ Results.RecordCount>
    <cfloop from="#ColsOutput#" to="#NumberOfColumns - 1#" index="i">

    any ideas?

    Inspiring
    July 1, 2007
    sawcmom wrote:

    > <!--- Columnar display variables --->
    > <cfset NumberOfColumns = Application.NumberOfColumns />

    there it is. look in the Application.cfc (or .cfm) file and change the
    NumberOfColumns variable to 3.

    ---
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com
    sawcmomAuthor
    Participant
    July 1, 2007
    unfortunately, the Application.cfm file does not contain this variable. should i add it? or is the setting actually coming from somewhere else?