Web App Blog List

I'd like to be able to have a tag that renders the list view of my web app as well as the list view from my blog. How can I have it so it shows the newest for each together?

Hey there, You need to use modules:
Here are the modules you have for blogs to use throughout your site.
http://kb.worldsecuresystems.com/134/bc_1345.html?bc-partner#main_Blog_Modules
Here is what you have for web apps:
http://kb.worldsecuresystems.com/134/bc_1345.html?bc-partner#main_Web_App_Modules
In the admin you can also use the module manager to insert varius modules.

Similar Messages

  • Download Web App Url List

    Hi,
    Does anyone know how we can download the web app items url list?
    I can export all the web app items but I do not see the url. I think it used to be available but now it does not show up.
    Thanks
    Sohal

    Hi Sohal,
    There isn't yet a way to pull that information through a report, but an easy way around this would be to just list all the webapp items on a page ({module_webapps,WebappID,a}), having previously modified the layout from module templates > webapp layouts> list layout to only contain {tag_itemurl_withhost}. It will output the links of all the webapp items of a specific webapp.
    Kind Regards,
    Alex Pavelescu

  • Web app item lists in secure zones

    I have a single web app, and I'm trying to distribute secured web apps items across the different secure zones a customer may be logged into.
    For example, Customer A is a member of Secure Zone 1, which contains the secured web app items X, Y, Z
    Customer B is a member of Secure Zone 2, which contains the secured web app items U, V, W
    What I've discovered is that both customers can see all web app items (U V W X Y Z) in the list view layout, but clicking to view the detail of an item not in their secure zone will prompt them to log in.
    Is that correct? If I SECURE an item by putting it in a secure zone, I don't expect it to show up in a list for a customer that is not a member of that secure zone.

    Your understanding of how BC works is correct.  Only the details page will respect your secure zone setting. 
    To achieve what you need, the page that holds the list of items would have to be secured in the proper zone, and you would need to fileter the list output by category, perhaps setup a category to mirror each of your secure zones.
    An extension to that which would allow you to have a single output page would be to ajax in the list view output, and pull that from the specific page based on the users secure zone.  You can get the names of the users secure zones using a builtin BC tag {module_subscriptions}

  • Outlook Web App - Distribution Lists (Your Request can not be completed right now. Please Try again Later).

    We just migrated over to Exchange 2013 and have a few issues.  The main concern is users and their individual distribution lists didn't carry over correctly.  I narrowed it down to the lists that users received via an email, then dragged-n-dropped
    onto their Contact area.  All other individual contacts and other lists can be viewed/edited, its just the ones that was copied via an email into their contacts.  We get the message that "Your request can not be completed right now.  Please
    try again later."  This is an important asset to be able to pass distribution lists from one user to another user (per department); but don't want to make the list a global list.  These distribution lists can be seen if using the full outlook
    version; but won't display in OWA.
    Tech Girl 7

    Hi,
    Is there any update on this thread?
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

  • Web app: Custom List Layout for WebApp Search Results

    Hi there
    I am quite familiar with creating additional .tpl list layouts and using them.
    Question though, is it possible to have a WebApp search form return results using a custom layout as opposed to the list or list_backup views i.e. customize the following:
    {module_webappsresults,,,true,-1,,1}
    Any help would be much appreciated!
    Gavin

    Hi Enjin Powerhouse,
    Please review the following thread: http://forums.adobe.com/message/5668839#5077760. Unfortunately {module_webappsresults} is not a supported layout.
    Cheers.

  • Show different content after every 5th web app listing

    I have a web app that list products. I would like to show different content after 5th item from the web app.
    So, it might look something like this.
    <div class="wrapper article-single-wrapper">
    Web app product 1
    Web app product 2
    Web app product 3
    Web app product 4
    Web app product 5
    </div>
    <div class="wrapper sponsored-post-list-wrapper">
    Advert
    </div>
    <div class="wrapper article-single-wrapper">
    Web app product 6
    Web app product 7
    Web app product 8
    Web app product 9
    Web app product 10
    </div>

    You can only do that with javascript, Say you had a hidden contentholder with the add on it. You could use jQuery for example, store the .html() into a variable and then every nth-item (4th) you could .insertAfter()

  • In BC how do you display fields between 2 web apps

    I have successfully connected two web apps by creating a 1 to 1 relationship between my two web apps Article and Author.
    So, when a user is on the details page of my Article, they see the Authors info.
    But, now, I need to do the reverse..create a page that displays ALL of the Articles written by a specific Author.
    Thanks

    Hi there,
    You actually should set up categories rather then using a custom field like that. Under site settings in the admin, you will see them there.
    On a web app item, the button in the top left.. If you click that you will see the classification option.
    Once you do that in you can insert web app item lists based on that specific category and the Web app search, can search just for those.

  • Can you update a web app's weighting field automatically??

    I'm having a real hard time understanding why we have the power in BC to build web apps but can't sort data the way we want through automation... I realize at this point, the only way to sort my items by date is to manipulate the weighting field. However, I’m building a user driven site with all user submitted content and it needs to be available immediately. Now, obviously results are posted online as soon as they are submitted but as of now, the only automatic way to display results that makes any sense is by a Recent Activity listing or Alphabetical. 
    Is there any way to automate updating an item's weighting field so that results can be available in order of, for example, Event Date (custom date field)?????
    HELP PLEASE - all this power sure seems like a waste if you can't manipulate your results accordingly!!

    Ok- two things--
    1.  You are missing a "(" at the beginning of your function-- you currently have:
    function($){
        var container = $(".sort-list");
        var items = $(".sort-item");
        items.sort(function(a,b){
            return new Date($(a).attr("data-event-date")) < new Date($(b).attr("data-event-date"));
        }).each(function(){
            container.prepend(this);
    })(jQuery);
    But you need a beginning parenthesis before the "function":
    (function($){
        var container = $(".sort-list");
        var items = $(".sort-item");
        items.sort(function(a,b){
            return new Date($(a).attr("data-event-date")) < new Date($(b).attr("data-event-date"));
        }).each(function(){
            container.prepend(this);
    })(jQuery);
    2.  Move the whole script in your page to after the "ul.sort-list" element.  Right now you have the javascript in the page before the UL element that holds your web app items, so the browser will read that javascript first and since it hasn't read the web app item list inside the UL element then it won't work, so move it to after the closing </ul> of your web app list.
    You should be all set if you fix those two issues. Good luck!

  • Some Outlook tasks only showing up in Outlook Web App, even if they were entered in Outlook 2013 or on the iOS email client.

    A user creates tasks in Outlook 2013, his Exchange email account on his iPhone and in the Outlook Web App (Not Outlook.com). A small number of these tasks will only show up in the Outlook Web App, though, no matter which platform he entered the
    task from. He can enter a task in Outlook 2013 and it might not show up on the task list in Outlook 2013 or IOS after that, but WILL show up in the outlook Web App task list.
    At first I thought sorting was the issue, but we compared all tasks in both Outlook 2013 and OWA, sorted by due date, and, sure enough, some were missing from 2013.
    What I am not sure of:
    If/how long a task will be visible on the platform it was submitted before it begins only appearing in OWA.
    How long ago this started
    I couldn't find this issue in the community or with a quick google search.
    I am going to see when he is available to sit down and go through tasks to see if there is a pattern and try replicate it so I can see how long it might be available on the submitting platform before disappearing.
    I can provide any other info needed. Thoughts on this issue?

    Hi,
    I would suggest you reset the view if you found some tasks in Outlook missing.
    VIEW tab -> Reset View.
    Or we can simply start Outlook with the switch "/cleanviews"(Restores default views. All custom views that you created are lost):
    Press Win + R and type “outlook.exe /cleanviews” in the blank box, then press Enter.
    Check if this helps you find the missing tasks.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • "Edit templates" feature not working properly for web apps in Dreamweaver CS6?

    This is along with the web apps tag list not appearing in the Data tab of the Business Catalyst side palette.
    However, it works fine with the existing announcement module.
    Is this feature unavailable for use with web apps, or am I doing something wrong?

    Hello Daniel,
    a similar problem has been reported in this thread: http://forums.adobe.com/message/4784051#4784051
    We have a bug that prevents correct web app matching if the web app name contains ' ' (space), + (plus), '(', ')', '[', ']' .
    In order to work around the bug please remove space, plus or parentheses from the webapp name.
    Best regards,
    Iulian Radu.

  • There is a web app...

    That lets you send free SMS texts.
    It's on the apple.com web apps page, listed as Krypton I believe. Has anyone tried this? If it's really free and works, this is a must have!

    i tried it, to myself...
    you have to know the other person's carrier...its a bit slow...the other party would see a bunch of 1s & 0s as the number texting...when i replied back, i never got the reply...
    stick with regular texting!

  • FTP upload on a web App

    Hi people, I am creating a web application which on one part need the user to upload an image. Rigth now iam testin the site on a free web host and so it just let me upload files using FTP, the problem is that i cant find the way to upload the image, i already know how to upload files to FTP with flex but that was using the "File" class which you can only use on an AIR application, how could i achieve the same result from a web application?
    Thanks

    Not too sure about pagination and filtering/sorting.  You might have to hack that together with some javascript and/or ajax.
    Here's my advice on the last two...
    The owner of their record in the web app needs to be able to edit only their own listing.
    This is the default functionality of customer submitted web app items in a secure zone.  They can only edit their own web app items.  Make sure the {tag_edit} tag is included in your web app item list view and if that list view is rendered in the Secure Zone while the user is logged in, the owner of that web app item will see the EDIT link to edit their web app item.
    but can only be shown if that user selects the radio button field to allow us to publish their email address.
    While I advise against showing an email address in plain text on the web, if you are ONLY including this web app in a secure zone then this could be ok.  Having a plain text email address in publick html markup is a no-no.  Spambots will grab it and start spamming you.
    But if you do intend to do this only in the secure zone and the logged in users are trusted you can probably just:
    Include a field name in your web app form called "showemail" and use the checkbox data type.
    Include a blank field that you hide in your form called "owneremail" and use the string datatypeHide it like so by manually editing the form markup: <input type="hidden" id="owneremail" name="CAT...." />
    Use some javascript so that when someone sets the checkbox for "show email address" it fills in this hidden field.  If the form is in a securezone you can just use {module_emailaddress} in your actual javascript code on that page to output the user's email address and fill the #owneremail input with that value.
    Someone else might have more information about pagination.  I forget if pagination is built into web app lists.

  • Can I use Web App data string (image) in a CSS hover function?

    I am developing a "show and tell" company employee profile using the Web App. I built my list item and the detailed items. Works fine. However, I have no hover function. So I created  some css - a div id and added a background image then a div hover with another image for the hover. This worked. I moved the code over from Dreamweaver to BC – inside the Web App (the list template). I replaced the image paths with the Web App data string - image ( ex. {tag_employee photo} ). Then I did the same for the hover – I switched out the image to the data string ( ex., {tag_employee photo2} ). It doesn't work now.
    All the CSS is written inside the body so it's not pulling from an outside path. I figured an outside path may not understand the data string.
    How can I get this to link with the image data string? Am I missing something?
    How can I create a image switch using CSS and the hover function WITH the BC Web App data strings?
    Below is how I wrote the DIV id:
    # List_photo {
        height: 200px;
        width: 200px;
        background-image:url("{tag_employee photo (200px)}");
        position: relative;
        margin-bottom:10px;
        display:block;
    # List_photo:hover {
        height: 200px;
        width: 200px;
        background-image:url("{tag_employee photo (hover)}");
        position: relative;
        margin-bottom:10px;
        display:block;
    Thanks!
    Robert

    Hi Robert,
    The concept of what you are doing will work (so long as the <style>s are on the actual page) but you need to append '_value' to any image tag to get the image url and not the HTML output of the image.
    So your tag would be {tag_employee photo (hover)_value}

  • How to make a Web App Item Repeat?

    Hi,
    Is there a way to build a Web App that has an item repeat automatically?
    For example if there is a list view of ongoing events, is there a way to code it so an event appears every other Tuesday for example?  The idea is that the user doesn't have to create a new event for every Tuesday.
    Pointers in the righ direction or jQuery/javascript ideas are much appreciated!!
    Thanks,
    Jeff

    Yea it'd have to be javascript/jQuery. The jQuery solution would be something like:
    Add a field to your web app that is called "Daily Class" and use the True/False field type.  This field type will output a "1" if it's True and "0" if it's False. Also, if you are retroactively adding this field to your web app, there's a chance there might be nothing output if someone didn't click the checkbox at all.
    Add another field to your web app called "Daily Class Day" and have it be a dropdown (select box) so that you can add the days of the week and they can only choose those days so your values will be consistent. If you left it a string or regular text field type then your client could enter values like "wednesday" or "Wednesday" or even have misspellings.
    Add these field sto your web app layout list or detail view in a hidden input elements:
    <input type="hidden" id="dailyeventstatus" value="{tag_Daily Class}"/>
    <input type="hidden" id="dailyeventdate" value="{tag_Daily Class Day}" />
    Your jQuery could check for that input and if it's value is "1" and "1" only and if there's a value for the day, then copy that class information and insert it into another list that you have setup to show daily classes.

  • Looping through items in a web app

    Hi there,
    On this site - http://www.dandmrural.com.au/
    Where it reads Latest news, I have each news piece setup as a content holder with a piece of javascript looping through them.
    I want to modify this to use Web apps so the client can add and remove items themselves and have them looping through as they do now.
    Using a Webapp I have access to {module_webapps,20117,a} which lists out all the items and {module_webappscount,20117} which gives me a count of the number of items.
    Can someone please give me some pointers on how to go about migrating from a content holder setup to using webapps.
    Thanks, Ben

    Your first step should be to customize the web app item list layout to match how each item is rendered in the shared content holder. From there, you should recreate each news item as an individual web app items. Finally, replace the content holder with the web app item list module ( {module_webapps,20117,a} ). It appears that the script that is responsible for handling the looping can be found here and is not relying on any sort of fixed number to control the transitions. Instead, it simply is looking for any divs which have an id that begin with "content-" and fades them in & out in whatever order it finds them until it reaches the final item and then starts over.
    Additionally, I would recommend adding some sort of incremental counter to your div id within your list template. Currently, the divs which contain each of the three news items share the same id attribute of "content-" which is not something you want.
    Something like this in your list layout should do the trick:
    <div id="content-{tag_counter}">

Maybe you are looking for