BC Forum - slider of latest posts...?

Hello - I'm trying to figure out the best way to approach creating a slider of the latest post from a BC forum on my site...  
I want to take the latest posts (Title of post / User who posted it / date posted) and run these in a slider on the welcome page similar to a news ticker....  The silder i can do - but struggling pulling the data from BC... 
1/ how do I pull the posts out with raw values (I just want - Title of post / User who posted it / date posted)
2/ How to seperate the info so I can pull them into a jscript slider...??
Anyone got any clues or ideas how this could be done?
Many thanks!

ok try this... save the forum module in a page (call it /forumlist) and call it up by ajax. Then run the code to sort it inside the callback, then once it's sorted do whatever. I haven't tested this but it should work:
function GetForum(){
          forumget = $.ajax({
               url: '/forumlist',
               dataType:'html',
               async:false
          forumget.done(function(data){
               $(data).find('ol.forumsitesummary li').each(function(i,val){
                    fnode = document.createElement('div');
                    $(this).clone().appendTo(fnode);
                    topic = $(fnode).find('a').text();
                    $(fnode).find('a').remove();
                    date = $(fnode).find('span.date').text();
                    $(fnode).find('span').remove();
                    author = $(fnode).text();
                    forumdata[i] = [topic,author,date];
                    // do whatever here.
     $(window).on('load', function(){
          GetForum();

Similar Messages

  • Suggestion :latest post option

    it would be nice to have an option to view the latest posts since my last login in each category so you dont have to check all the categories you read. say like add one under residental products that will show all the news posts that fall under that category and do the same under mobile devices, wireless plans and so on
    Solved!
    Go to Solution.

    You can activate those settings in the preferences tab of your profile.  It would be in the General Settings and in the Portal Style Home Page Settings.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer that solved your issue as the accepted solution.

  • Latest posts on Discussion home page

    Any chance that the list of the 5 latest posts that used to be listed on the Discussions home page could make a return?
    I spend most of my time in the PowerBook 12" forum, but from time to time I'd see a topic posted in this list from another forum that I could answer.
    I just thought it was nice that it gave me the chance to be exposed to random questions and posts from other forums (fora?) without having to dredge through them all myself.

    I miss that, too.

  • Exchange rate coefficient on the basis of latest posting date in invoice.

    Hi,
    I have one query on posting date(picking of exchange rate coefficient from TCURR table) in invoice verification.  Please help.
    Conditions are--
    vender and company code are not in same currencies(ex-USD and INR). exchange currencies are maintained perfectly on every month 1st ie co-efficients in TCURR table ie OB08
    Query---
    1.At the time of parking invoice suppose i enter the date 20th august and i have posted that invoice as parking. It is converting the local currency as per 8th month exchange rate.
    2.And at the time of final posting the invoice supose i posted that date as 10th September. Business wanted that converting the local currency as per 9th month exchange rate But now local currency is converting on the basis of initial entry of posting date ie 8th month only.
    Please advise and guide what configeration that i have to set for picking the exchange rate coefficient on the basis of latest posting date in invoice verification.
    Thanks & Regards,
    MadhuBabu.

    Hi
    I dont think it is possible as once you enter posting date while in parking invoice screen, on that date exchange rate will be calculated and it wil not be different at time of posting invoice. Instead of parking, you have to directly post with current posting period.
    Thanks

  • I had to reformat my OSX 10.5.8 and i can't restore my emails from my time machine backup from an external hard drive - only the latest (post backup) time machine back ups are available to restore. Please can any help

    I had to reformat my OSX 10.5.8 and I can't restore my emails from my time machine backup from an external hard drive - only the latest (post backup) time machine back ups are available to restore. Please can any help? I can find the mail folder in my libraries, but the Restore Button is grayed out

    OSX treats the reformatted drive as a different one; it's the same as replacing it, and the old one is no longer connected.
    See #E3 in  Time Machine - Troubleshooting to see and restore from the "old" drive.
    And, you may not want to restore via the Finder; see the blue box in #15 of  Time Machine - Frequently Asked Questions.

  • 2LIS_04_P_ARBPL - figures are grouped according to latest posting date!!

    We are trying to fill setup table for App 4 and afterwards when we extract the DS 2LIS_04_P_ARBPL we are getting figures clubbed together based on latest posting date
    for ex: a given production order and type, if AFRU table shows below entries:
    16.01.2012      1.5
    17.01.2012      1.0
    19.01.2012      0.2
    then in setup table we have only one row (figures are grouped and shown against the latest posting date!!
    19.01.2012    2.7
    what is the solution?

    Hi,
    Most of the times data won't fill in the base tables, because the reason is, at the time of data entrry by users, there are certain conditions , so until and un less all that conditions fullfill, then only all feilds will fill in the base tables. I faced the same problem for 2lis_04_p_matnr datasource, I'm not getting Batch, so I enhaced teh datasource. So better add ZZ feild to datasource and enhace the ds based on AFUM table (Based on the process order)
    Thanks
    Reddy

  • Customers whose latest posting date is older than 2 years

    How to find out the Latest posting date for a customer in the report from the list of Posting date available.
    Sorting option may not be a right Option as i need to create a condition on the formula(Latest posting date(4) -Sy-datum(4) greater than 2 years)
    Please suggest me

    Please let me know for any inputs

  • Latest posting date from table MKPF

    hi all,
    I want to retrive the latest posting date from table MKPF. Here I am using the MARD,MSEG,MKPF tables to get the latest posting date.
    if not it_mard[] is initial.
    select amblnr amjahr amatnr awerks algort bbudat
      into table it_mseg_mkpf
       from mseg as a mkpf as b
       on amblnr = bmblnr
      and amjahr = bmjahr
      for all entries in it_mard
      where a~matnr = it_mard-matnr
      and    a~werks = it_mard-werks
      and   a~lgort   = it_mard-lgort.
    if sy-subrc eq 0.
    sort it_mseg_mkpg decending by matnr werks lgort budat.
    endif.
    loop at it_mard.
    clear it_mkpf_mseg.
    read table it_mseg_mkpf with key matnr = it_mard-matnr
                                                      werks  = it_mard=werks
                                                      lgort    = it_mard-lgort
                                                      binary search.
         if sy-subrc eq 0.
         it_final-budat = it_mseg_mkpf-budat.
         endif.
    endloop.
    from the above code  i need to rereive the latest posting date    , but when I am reading from internal table it is giving the sy-subrc is 4.  i know when we use binary search , the standard table should be ascedning order. but here I need to use descedning order.
    please hhelp i this.
    regards,
    Ajay

    Hi,
    1. Check Storage location (LGORT) value available in the internal
        table it_mseg_mkpf. Some case no value.
    2. Remove the binary search after u try again. Like below.
    loop at it_mard.
    clear it_mkpf_mseg.
    read table it_mseg_mkpf with key matnr = it_mard-matnr
                                                      werks = it_mard=werks
                                                       lgort  = it_mard-lgort.
    if sy-subrc eq 0.
    it_final-budat = it_mseg_mkpf-budat.
    endif.
    endloop.
    3. sort it_mseg_mkpg DESCENDING BY budat matnr werks lgort.
    4. For all material (it_mard) may be or may not be there in the MSEG table.
        So for some case SY-SUBRC = 4  will give.
    Thanks,
    Durai.V
    Edited by: Durai V on Sep 9, 2008 6:50 AM

  • 'Mark All Forums Read' from 'View Posts Since Last Visit' pg

    I usually read the forums by the 'View Posts Since Last Visit' method rather than any particular forum. It'd be very nice to have the 'Mark All Forums Read' item on that page as well as the main one to save a trip to that page just for that item. Is this doable?

    jackmetal wrote:
    Another one that I thought would be good (and have actually mentioned before), was to have a 'View Last 24Hrs Posts'...
    Sometimes I'll go in read a post and exit, and of course next time I go in it's all cleaned since then. 
    :shock:
    I'll second that one, too. It's more of a 'disaster recovery' mechanism and wouldn't ordinarily be used, so isn't all that important to me, but it's great when you need it. Most (vBulletin, etc.) boards support that, I believe.

  • When posting to a forum the new version of Firefox does not show the post. When I start up IE and go to the forum there is the post. However Firefox 4 will not show the post. How can I fix this issue?

    Recently I upgraded to Firefox 4. I frequent various forums where I post advise on various subjects. I am finding that version 4 is showing the threads in the forums, allowing me to log in and to post. However the posts as sent in are not coming up at all, even if I get out and return, the page is not "refreshed."

    this is a follow up from the profane post earlier....
    i have done this twice in two other posts..
    here is my problem.. i started off trying to update itunes, it failed twice and said i needed to install manually via tools.
    the only place to get to tools is the pop up box that appears when you click check for updates.. if there is an available update then the pop up shows up with the quick time and itunes files to download. so i finally figured that out. i clicked on tools and manual update, four files were saved to a file. Apple mobile device support, another one similar, itunes, and another one i cant remember. I only downloaded the itunes file seeing as though thats all i needed to accomplish in the first place.
    so then i restarted my computer bc you need to reboot and then reopen itunes for update to take effect. once i have itunes back open i plugged in my new 5s which i am trying to sync to my computer to get all my stuff back bc i lost my previous phone over the weekend.. once i plugged the phone in an error stating i needed to unistall the apple mobile device support and itunes and then reinstall. well i dont know where those files were originally stored on my computer AND since my itunes was updated, just not the other 3 associated files, when i click check for updates it says its up to date and then pop up containing the quick time and itunes does not pop up thus i cant get back to the tools tab to manually save the 4 files again.
    so i was just going to uninstall itunes all together and then i thought well what happens if it erases all my photos apps songs etc... which would defeat the whole purpose in the first place of me trying to sync my new phone to get all my stuff back.
    so i literally have no idea what to do at this point.. if you have read this you are probably just as confused as me...

  • Response to forum questions and latest updates

    We have prepared the following FAQ to address some of the common concerns and questions on this forum; thank you for your feedback to date.
    I have opened a seperate discussion thread http://forum.stage.creative.com/showthread.php?t=6283.
    Driver & Application Questions
    • Where do I download drivers and applications for my product 
To download drivers and applications, please follow these steps:
Click on SupportClick on DownloadsChoose the region you are in, and the countrySelect your product type, then your specific product/model and click next Choose your Operating System (such as Windows Vista 32-bit or 64-bit)Begin to download the various programs needed.
    • Will future driver releases be certified for Windows Vista 
Yes, all of our future releases will be Microsoft certified.
    • Applications from the original Sound Blaster X-Fi CD do not work in Windows Vista. Will there be downloads available for all missing applications and when 
Driver downloads and basic software such as the Audio Console are available for download from our web site. A free CD containing the full application suite will soon to be available to order from our Online Store (a Shipping & Handling charge will apply).
    • Why does the packaging say Windows Vista Ready when there is no Vista-compatible install CD in the packaging 
This is to indicate that drivers are available online to support Windows Vista.
    • Is there a difference in the Windows Vista and Windows XP implementation of the X-Fi CMSS3D feature 
Yes. The architecture of Vista doesn t allow a feature like CMSS-3D to operate in hardware for applications that use the Microsoft API s. If a game for example uses OpenAL, then CMSS-3D will run in hardware but if a Microsoft API is used it operates on the host within Windows Vista s application level effects architecture.
    • Is there a difference in the Windows Vista and Windows XP implementation of the Crystalizer feature 
No.
    • Why is it taking so long for Creative to provide full driver and application support for its products in Windows Vista, given the 6 year development time of the OS 
Even though Windows Vista has been in development for several years and in public beta for a long time, the key reason for delays in providing finalised signed drivers for Windows Vista which affected several manufacturers is that the audio features in Windows Vista were incomplete until a few months before its final release. Other features in Windows Vista such as APO s (Audio Processing Objects) could not be installed for our products until do***entation and tools were available from Microsoft. This was an issue for all aftermarket sound card vendors. Since we received the correct tools and do***entation for implementation, we began working diligently to finish the development and release the driver updates for our range. Given the considerable number of products, it is not feasible to release everything at once, so we staggered the driver release schedule.
    • There is a lengthy gap between driver releases. Would it be possible to have more frequent beta-version releases 
We focus on delivering stable driver sets as this is more efficient than multiple interim releases. We anticipate releasing a further X-Fi update in the end-May/June timeframe. Feature Loss
    • Why is SPDIF passthrough not working with Windows Vista 64-bit's Will it ever 
SPDIF passthrough is available in the latest X-Fi update. For the Audigy Series, we cannot support this feature in Windows Vista 64-bit.
    • Will decoding of Dolby Digital and DTS signals be supported in the future If not, why not 
These functions are not supported at driver level in Windows Vista and going forward will be supported at application level by applications such as Power DVD or WinDVD.
    • Will DVD-Audio be supported in the future 
We are not supporting DVD-Audio in Windows Vista.
    • Will 6.1 speaker mode be available in future drivers If not, is this because of Creative or Microsoft 
No, as Windows Vista does not support this speaker configuration.
    Bugs/Specific Issues
    • Why is the CPU utilization on some Windows Vista systems significantly higher when using X-Fi CMSS-3D than on Windows XP 
This is a 3rd party product issue on which Creative cannot comment. We have made CPU utilization improvements in the forthcoming X-Fi update.
    • Why do I get BSOD and system instability when an X-Fi card is installed in my Windows Vista system with 4GB or more of RAM 
This issue will be addressed in the next X-Fi driver update. It is also recommend to check with your motherboard manufacturer for the latest version of the motherboard BIOS.
    • Enabling the Crystalizer during ASIO Playback with an Elite Pro causes reproduceable BSODs (CTEXFIFX.DLL) why 
We have reproduced this issue and are working on a solution.

    Oh and where are my manners!
    Please, and thanks
    Gift.

  • I succesfully logged in to the Users Forum; but unable to post my statement. What shold I do?

    I had password problems, which prevented me from logging in to the Users Forum. Now I got my password changed, which was accepted and logged into the Users Forum. But the Text Area therein does not accept any typed input. Finall I am forced to ask this supportive question. Please inform me as to how I can post my comments on the Users Forum, after logging in.

    I wish to thank core-el for his/her prompt and perfectly useful reply to my TWO Support Questions.
    - - S.Rajaram
    (Firefox User)

  • ABAP General forum - 22 pages of posts in one day - wtf ?

    I don't have a project right now, so I was perusing the ABAP forum for whatever looked interesting.
    I noticed 22 pages of posts just today 11 Feb. With 15 posts per page that's 330 post/replies in one day!
    WTF is up with that, a little too crazy isn't it ?

    The turnover in the ABAP Development forums has always been fast (hence also the temptation to duplicate post, instead of following up with more infos from having made some headway on your own while waiting for answers)...
    Since a few days, there has been a steady increase and it is very busy at the moment.
    I am not sure what the equilibrium thread-per-minute rate is before people reach the search-first-coeffecient, but it is approaching hopefully.
    I am trying to look on the bright side of it...
    Cheers,
    Julius

  • I logged in today, being asked for name update. I can not find my latest posts

    Today I logged in to the forum, being asked for update of my name. Once done this I can not find any link how to get to my recent posts, or they disappeared. I was on the forum 3 days ago and everything was OK....

    Hi skipperwithcalc,
    This is an unusual event, I've never seen a username disappear before!  If you can check your private messages, I have sent you a request for more information so we can look into this further.
    Thanks,
    SunshineF
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!
    Rules of Participation

  • I am trying to upload a photo from my camera roll to a forum. The maximum size allowed is 390.6 kb. I figured out the emailing reduction to myself but cannot email upload to the forum I want to post to. Thanks

    I am trying to upload a photo from camera roll to a forum. The forum states the max size is 390.6KB. I figured out how to reduce photo size for emailing but cannot email the forum, any pointers. Thanks.

    Gramps, you are always coming to my rescue.
    Okay, I loaded the page under a different name http://abilityaxis.com/test.html. Viewing the source code doesn't show the yellow.
    For demonstration purposes I copied a small amount of the text and changed the colour of what is yellow in Dreamweaver to this pinkish colour (I tried yellow but you couldn't read it)
              <form id="registrationForm" name="registrationForm1" method="post" action="">
                <fieldset>
                  <legend>Contact Information</legend>
                  <span id="sprytextfield1">
                    <label>Name <span class="inforequired">*</span><br />
                      <input type="text" name="name" id="name" />
                      <br />
                   </label>
                    <span class="textfieldRequiredMsg">value is required.</span><span class="textfieldMinCharsMsg">Minimum number of characters not met.</span><span class="textfieldMaxCharsMsg">Exceeded maximum number of characters.</span></span> <span id="sprytextfield2">
                     <label for="businessname">(Business or Organization) Name<br />
                      </label>
                      <input type="text" name="businessname" id="businessname" />
    It basically goes all the way through the form.
    Any advice?
    thanks,
    deb

Maybe you are looking for

  • Seeburger EDI adapter Vs Seeburger  BIC adapter

    hi, what is the difference between <b>Seeburger EDI adapter Vs Seeburger  BIC adapter</b>.any docs please. thank you, babu

  • Performance issue in KM as a WebDAV client

    Hi all, I have configured KM as a WebDAV client.But there is a performance issue.Whenever i try accessing the folder,its been cached. Can some suggest how to avoid caching of data everytime. I am using a memory cache. thanx and regards, anuradha

  • Resource Mismatch error message

    Receiving resource mismatch message on Acrobat 6.0 for Mac. Tried to download another version, but it will not allow me. What do I need to do?

  • Problem with 3.2.1 update question

    OK, I'm hoping the 'group mind' will have an idea on a solution to this. Short background- I have my iPads synced to my Dell desktop at home where we have Hughesnet satellite Internet, as we live in a rural area. I have my iPod Touch synced to my Ace

  • Can't load web pages?

    in the past few days I have been unable to load certain webpages (google, hotmail), and have had spotty access to others (gmail, certain yahoo pages). Also, many images are not displaying. I downloaded Firefox and experienced the same problems, so it