CodeCharge Studio
search Register Login  

Visual PHP Web Development

Visually Create Internationalized Web Applications, Web Reports, Calendars, and more.
CodeCharge.com

YesSoftware Forums -> Archive -> CodeCharge.Discussion

 Re: Dynamic Grids?

Print topic Send  topic

Author Message
Kenneth E. Lussier
Posted: 02/24/2002, 5:34 PM

This is a great example, and I may use parts of it. However, it is a
little more complex than what I want the users to do. Basically, I want
to create a list of checkboxes, have them check off the ones that they
want to see, and then only display those fields. The people that are
going to use this system are 100% NON-technical, so it needs to be as
simple as possible.

I wouldn't even consider doing this, except that there are 33 fields per
record, and it makes it hard to read when it is displayed horizontally.
In a lot of cases, the user may nnot need to see all of the fields.

Thanks,
Kenny

Ken Hardwick wrote:
>
> Check out my example (using ASP) There is a downloadable zip with
> ccs/database.
> http://www.kenhardwick.com/cc_02/Default.asp
>
> Basically, I let the user select what fields they want, write a SQL
> accordingly and use the created SQL
> to retrieve the select fields.
>
> Also, I have three "results" forms in my example..one with one field, one
> with two fields and one with three fields..
> and then hide the other two based on number of fields selected and added to
> the SQL.
>
> (or you could have as many pages as needed and redirect to the correct
> page...1 column select goto page1
> 2 columns selected..goto Page2,..etc...but just pass the same SQL
>
> By the way, if you come up with a better/cleaner way, would appreciate
> recieving your resulting ccs file.
>
> Happy CodeCharging,
> Ken Hardwick
>ken@kenhardwick.com
> www.kenhardwick.com
>
> Kenneth E. Lussier <klussier@zuken.com> wrote in message
>news:3C7675BD.3B831B81@zuken.com...
> > Hi All,
> >
> > I am building a sales lead tracking system using PHP4 & Templates plus
> > MySQL. I want to allow users to choose which columns they see in the
> > leads grid. The leads table has 33 fields, so the grid is extremely
> > wide. Is there a way to select which columns they want to show/hide on
> > the fly, or do I need to create a new grid for every possability?

--
----------------------------------------------------------------------------
"The hardest thing in this world, is to live in it..."

Kenneth E. Lussier
Sr. Systems Administrator
Zuken, USA
(978)692-4900 ext. 277
PGP KeyID CB254DD0
http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xCB254DD0
Kelvin Chua
Posted: 02/24/2002, 5:42 PM

Hi Ken Hardwick ,

Very generous of you to submit the CCS file for everyone to benefit from it.

My compliments.

Thanks.

Kelvin Chua
SINGAPORE

"Kenneth E. Lussier" <klussier@zuken.com> wrote in message
news:3C79947C.3180EF8F@zuken.com...
> This is a great example, and I may use parts of it. However, it is a
> little more complex than what I want the users to do. Basically, I want
> to create a list of checkboxes, have them check off the ones that they
> want to see, and then only display those fields. The people that are
> going to use this system are 100% NON-technical, so it needs to be as
> simple as possible.
>
> I wouldn't even consider doing this, except that there are 33 fields per
> record, and it makes it hard to read when it is displayed horizontally.
> In a lot of cases, the user may nnot need to see all of the fields.
>
> Thanks,
> Kenny
>
> Ken Hardwick wrote:
> >
> > Check out my example (using ASP) There is a downloadable zip with
> > ccs/database.
> > http://www.kenhardwick.com/cc_02/Default.asp
> >
> > Basically, I let the user select what fields they want, write a SQL
> > accordingly and use the created SQL
> > to retrieve the select fields.
> >
> > Also, I have three "results" forms in my example..one with one field,
one
> > with two fields and one with three fields..
> > and then hide the other two based on number of fields selected and added
to
> > the SQL.
> >
> > (or you could have as many pages as needed and redirect to the correct
> > page...1 column select goto page1
> > 2 columns selected..goto Page2,..etc...but just pass the same SQL
> >
> > By the way, if you come up with a better/cleaner way, would appreciate
> > recieving your resulting ccs file.
> >
> > Happy CodeCharging,
> > Ken Hardwick
> >ken@kenhardwick.com
> > www.kenhardwick.com
> >
> > Kenneth E. Lussier <klussier@zuken.com> wrote in message
> >news:3C7675BD.3B831B81@zuken.com...
> > > Hi All,
> > >
> > > I am building a sales lead tracking system using PHP4 & Templates plus
> > > MySQL. I want to allow users to choose which columns they see in the
> > > leads grid. The leads table has 33 fields, so the grid is extremely
> > > wide. Is there a way to select which columns they want to show/hide on
> > > the fly, or do I need to create a new grid for every possability?
>
> --
> --------------------------------------------------------------------------
--
> "The hardest thing in this world, is to live in it..."
>
> Kenneth E. Lussier
> Sr. Systems Administrator
> Zuken, USA
> (978)692-4900 ext. 277
> PGP KeyID CB254DD0
> http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xCB254DD0

Ken Hardwick
Posted: 02/25/2002, 2:11 AM

Kenneth,

You could provide the user a "check box" list of columns (see my true/false
example at http://www.kenhardwick.com/cc_03/default.asp)
and then create SQL based on what columns they have selected. You could also
provide a text column for them to indicate order if they
have a preference.

Also, keep in mine there are ways to display the field in stacked format..I
working a project for work that I am doing that with. In fact, wrote
a function generate the stacked fields.
See the attached image as the part of the resulting page...
At its very basic format...fldField1 = fldField1 & "<br>" & fldField1 would
put field one over field2

Have a great day,,,

Ken Hardwick
(Kenneth Eugene Hardwick)


Kenneth E. Lussier <klussier@zuken.com> wrote in message
news:3C79947C.3180EF8F@zuken.com...
> This is a great example, and I may use parts of it. However, it is a
> little more complex than what I want the users to do. Basically, I want
> to create a list of checkboxes, have them check off the ones that they
> want to see, and then only display those fields. The people that are
> going to use this system are 100% NON-technical, so it needs to be as
> simple as possible.
>
> I wouldn't even consider doing this, except that there are 33 fields per
> record, and it makes it hard to read when it is displayed horizontally.
> In a lot of cases, the user may nnot need to see all of the fields.
>
> Thanks,
> Kenny
>
> Ken Hardwick wrote:
> >
> > Check out my example (using ASP) There is a downloadable zip with
> > ccs/database.
> > http://www.kenhardwick.com/cc_02/Default.asp
> >
> > Basically, I let the user select what fields they want, write a SQL
> > accordingly and use the created SQL
> > to retrieve the select fields.
> >
> > Also, I have three "results" forms in my example..one with one field,
one
> > with two fields and one with three fields..
> > and then hide the other two based on number of fields selected and added
to
> > the SQL.
> >
> > (or you could have as many pages as needed and redirect to the correct
> > page...1 column select goto page1
> > 2 columns selected..goto Page2,..etc...but just pass the same SQL
> >
> > By the way, if you come up with a better/cleaner way, would appreciate
> > recieving your resulting ccs file.
> >
> > Happy CodeCharging,
> > Ken Hardwick
> >ken@kenhardwick.com
> > www.kenhardwick.com
> >
> > Kenneth E. Lussier <klussier@zuken.com> wrote in message
> >news:3C7675BD.3B831B81@zuken.com...
> > > Hi All,
> > >
> > > I am building a sales lead tracking system using PHP4 & Templates plus
> > > MySQL. I want to allow users to choose which columns they see in the
> > > leads grid. The leads table has 33 fields, so the grid is extremely
> > > wide. Is there a way to select which columns they want to show/hide on
> > > the fly, or do I need to create a new grid for every possability?
>
> --
> --------------------------------------------------------------------------
--
> "The hardest thing in this world, is to live in it..."
>
> Kenneth E. Lussier
> Sr. Systems Administrator
> Zuken, USA
> (978)692-4900 ext. 277
> PGP KeyID CB254DD0
> http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xCB254DD0


begin 666 stacked.gif
M1TE&.#=A*@')`'<``"P`````*@')`(<```" ````@ " @ ```(" `( `@(#
MP,# W,"FRO ``````(0``(P``/]"2:U:8;5S>;U"2?]:8?]S>?][CL9[CO^E
M*"FU86.]>7N,ELZ,EO^<IM:<IO^EKM:MOMZEKO^MOO^UQ]Z]S^>UQ_^]S_^M
M__^U[__&CHS&GIS.IJ7.MK76OKW6Q\;>S\[>U];>W][&U^?.W^_&U__.W__6
MY^_6Y__>[_?>[__GY^?G[^_O__\.`PS1(M0.`PQ#0FP2]"@2]' 2]'#1@L!#
M&=02]' 2]'#1@L!#0=\2]'#1@L#1@L ````2]#3M.U(!!N02\S0```$2]I `
M``$2]O0```$```UA:# ````2]&3M.U(!!N02\V0```L2]M@```$4,H@```M;
MMG!A=U-O0R!S<F]O;&\``',````````````````````````2\[A$<3@```#A
M#Z'1).A ]W'1"F!!UQ%!UQG1).C1"GQ#/I,2\^A#/JI#/K(2]*1#/KP2\^@`
M``#A#Z%:_]C1).@2] !$15X``" '!'0```$````2]!SG+&H.`Y0``" '!'0`
M``$````2]43M.U) ]W'1"F!!UQ%!UQD2]%#M.DP!!N3KL*0```$2]I ```$2
M]FSH.T@!!N3KL*0```$2](#M.DP!!N1;MG ```L2]M@```$2]ISH.T@!!N1;
MMG ```L2]MA;M8!W`%-P`&%#`"!L`&]R`&\``'-;M8 `O3@!!N0.`PP```'1
M;VP.`PQ#0BT.`PP`O3@!!N0.`PP2]C0!!N02]FS1;VQ#&=0!!N02]FS1;VQ#
M0=\!!N0```#1;VP`__\``!CM'Z0!!P@```````````````#KMT@2]8@`````
M``L`__\``!CM'Z0!!N0```````````````#KMT@```````L``!8```````#K
MMT@`__\!```2]@3G^UH!!N0```````#KMT@```L```(```$``#OGP_2@H*2
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
M:YD>\>F=8;B9!JE0V>50$*4#%K5AXX51HIF-Q.)29O0"O^2:6@6;QVF8'*5
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
M;A*I'_TP,#^!X$]_MRM4_T0&ON=A3%P2_)/Y0&0Y'4#-?O?;H/] &$<]SKV
M<"43(?&^%SWR9;!DVT,@0SY(0 N4D&4D)!S#4&BP/VGP;!!DX/@P>#'*G8]C
MM(.:!X-WNLWQD(>IDY?)(,:X&WXOB1!3VA*EV,-".9%SM(N@Y/Y%03Y94&$/
MNYP.:G:!_]E0(K]3&AN3&,4?FNZ,:3SA&JG8,#<2$(Y@I)'IV&@[[DV-CW 2
M(YXPH+47L QJ[AN(`AO'11V(K@5E.YDD*:D#DN4O;.4Y9 P5&3B&.-)Q6[1D
MV$IYLDPN,)!MZF0B([FX1ZY2=Y";W.Z$:+D7O$QDQDM:Q[(WRBVJ<)/"]!D.
M?DFU7.Z,ES<S9O" B3H-[B^:*#LF%OG_E,RB`6U_*1S?(-M4R"&6D44>.Q,9
MQSE *WD31<][G0]_.,NKA5-'*'A!.;UX%WK:TW!?O.>\U*G/A.%PEMWLI[O^
M2<B"XBN(%SRHF1J:SH26ZZ$`Q1TXWSG0BD9T@AK=Z#X-NM Q.BE&M:1EBSK:
MKI%^=$HI)6E&;<E0$9GH.\H)3T(XHI^QZ(<][=GI2-DD4_#4`"%QF4@-Q-,`
M#8C%J(HIS%*1BAAN`I6F.A!/?X9*'H:4Y3_2.6IA-,.?'DJ5(57=R$[5HU.S
M]C1='*T@2/$T`:Z0X$3[28@,D&H7NWI5!WEE"%]E"=<&R-4P;ZD!41LS@QDT
MH )4?4MB%[L2_\=B$;""I>M7"&O8@91E!FL!`6-K$%G-<K:'DYWK=>IZ5_.@
M5B!^7:UJ94G2>%HN)8D9JD#X0@+!S&0@$M#M5WHKT!NE]#[-04F,>)J0X1IL
MMBBIK7J<2Y#%9N8^BNWA<A5RG]OF5B*\W>YON0G/=5DN`@A!2WIT0!WJ:H0K
MV='!>AGB7FLR9+PC3>QOQ8-8S.[EKO=-+%;#.=_R)E<']7UN<OGBE>GZE$<`
M[HQYT1O=B<!7(!)N+UO:*4BW<NP#BJG 5._CF?SN-BQX&;&(H?I=AFQ8L5,%
M"V=(K!BH(D?$,,:BBCN<&1*[N*8R2"QS9,Q8'@L8@S;VL$4<$V++GO\8,R:^
M,!!?&M+BE"6]Q9W(2!A2V(4,!,M7;D"6XYM5#G=FR@/9L PHO!:OE)G"\I0R
MA,VKDC&+N0)@80B:X3QG!1>IS3BFB'>WK.4N<]G+5,/PDY5;%CX35R)\82^C
M&>)H0L,(T3I8BW=U\!PJXP>Y>4;II#--:2O#Z+<"#K4\XT(B(0L9TK:U\$!6
M'6GPZNN'UDVU=U=R6%S#NLH&<<E4%4WJF"0XOK2V:4=\766]$F34R7XGL:ML
M:XSD&LY(TC4_#<TQR^ 8-&N1S'V6G&02GQC%N^4*8;ZJX_1LQJYR`7%;U(WD
M`&5;T9MQKGC@DI%V>W8MU!ZBO#.];<-ZN\3MX&9RDV/-.Q'5!\?^R8ZP$_WF
M+Z\6.1_)3W3,*V7),#RSXXFTPA5=<6$#%;?[V:K(">WQ3&L\TZ0V+DN!RR^+
M!LCE-,D11#TZ<^G,U>8HI5'-HZ0BG,M(YPYE:Q@S?%$J\3M.1>^,TO7$=+0X
MO4?JK!)%RW?TB3(IZTOWJ#^AWM:N2Q3K7_\FV=6T=:V;':%A/ZF0&&6M:W$*
M[G''U-SI7G=IW3U9=M>[J9Y,+, '7O"#)WSA@Y4PPR=>\8MG?.-_E;"^1U[R
IDZ=\Y2U_=\=G7O.;YWSG/?]YT(=>]*,G?>E-?WK4IU[UJV?]0P("`#L`
`
end

   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

Web Database

Join thousands of Web developers who build Web applications with minimal coding.
CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.