• Need a bit of help...

    From Fireball@VERT/FBEX to All on Sat Dec 12 17:59:27 2015
    I've been trying for hours now and can't figure out the problem with this.ããI want rounded corners on my group listings, so I did some digging around andãfound some stuff that I thought would work. The table was easy and the 2 topãcells were easy, but the bottom 2 cells aren't so easy. I know what has toãhappen; find the last element in the array and add the new sub class to it.ããEverything I've tried either adds the rounded corners to all of the arrayãelements or none of them. Here's what I've got in my msgs/groups.inc...ãã <tdãclass=@@JS:if(msg_area.grp_list[msg_area.grp_list.length-1]){'"grouplist2 ãbottomLeftRadius"'}else{'"grouplist2"'}@@><a class="grouplist2"ãhref="subs.ssjs?ãmsg_grp=^^groups:name^^">%%groups:description%%</a></td>ã <tdãclass=@@JS:if(msg_area.grp_list[msg_area.grp_list.length-1]){'"grouplist2 ãright bottomRightRadius"'}else{'"grouplist2ãright"'}@@>@@JS:msg_area.grp_list[RepeatObj.index].sub_list.length@@</td>ããI've tried variations on RepeatObj, but I can't seem to find how this thing isãindexed. Any help would be great!ãã-=Fireball=-ãã---ã þ Synchronet þ Fireball Express!!! BBS - http://fireballex.com telnet://fireballex.comã
  • From echicken@VERT/ECBBS to Fireball on Sat Dec 12 22:13:29 2015
    Re: Need a bit of help...ã By: Fireball to All on Sat Dec 12 2015 17:59:27ãã Fi> I've tried variations on RepeatObj, but I can't seem to find how thisã Fi> thing is indexed. Any help would be great!ããThe RepeatObj variable is explained at the top of web/lib/template.ssjs. Iãdon't think that this will entirely solve your problem, but you'll want toãstart by wrapping your code in a <<REPEAT groups>> ... <<END REPEAT groups>>ãblock.ããHowever at a glance I'm not sure what the purpose of this is:ãã if(msg_area.grp_list[msg_area.grp_list.length - 1]) { ... }ããIt looks like you're testing for the existence of something that is almostãguaranteed to exist unless msg_area.grp_list.length is zero. You'll probablyãwant to do something like:ãã if(RepeatObj.index === msg_area.grp_list.length - 1) { ... }ããWhich will tell you if you're at the last entry in the list.ãã---ãechickenãelectronic chicken bbs - bbs.electronicchicken.com - 416-273-7230ã þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.comã
  • From Fireball@VERT/FBEX to echicken on Sun Dec 13 09:38:14 2015
    Re: Need a bit of help...ã > By: Fireball to All on Sat Dec 12 2015 17:59:27ãã > Fi> I've tried variations on RepeatObj, but I can't seem to find how thisã > Fi> thing is indexed. Any help would be great!ãã > The RepeatObj variable is explained at the top of web/lib/template.ssjs. Iã > don't think that this will entirely solve your problem, but you'll want toã > start by wrapping your code in a <<REPEAT groups>> ... <<END REPEAT groups>>ã > block.ãã > However at a glance I'm not sure what the purpose of this is:ãã > if(msg_area.grp_list[msg_area.grp_list.length - 1]) { ... }ãã > It looks like you're testing for the existence of something that is almostã > guaranteed to exist unless msg_area.grp_list.length is zero. You'llã > probably want to do something like:ãã > if(RepeatObj.index === msg_area.grp_list.length - 1) { ... }ãã > Which will tell you if you're at the last entry in the list.ãããThanks echicken! It worked! I knew I had to make a comparison, I just wasn'tãsure ãwhat to compare. I had all kinds of crazy stuff going on after I sent out theãemail. I learned something today. :D Thanks again!ããRegards,ã-=Fireball=-ãã---ã þ Synchronet þ Fireball Express!!! BBS - http://fireballex.com telnet://fireballex.comã