Filter Web App List

Is there a way to filter a result list from a web app? 
I thought this would be a fairly common request, but can't find any details how to do it other that filter by the set 'Random' 'Latest' etc...  I want to be able to filter a web app list -  For example I may have 40 cats and dogs in the web app - I want to filter to show just the cats in the list.... I have a field in the web app that sets if the item is a dog or cat....???
Any help greatly appreciated.

Hi Duncan,  I think what you have done will help, but I can't seem to get it to work.
I've setup a category app with data source to itself(?) and also the product app (one I had before but added category data source called 'category breed' linking to the new catory app). It is the part where I get it to pull in the matching products from the products app that have been set to the same cateogry... bit confused how to do this, or how you done it??  Any chance you could be give a few more details. 
Do I have to 'classify' products to get this to work - or just select the category in the dropdown list?

Similar Messages

  • Wish list request-  {tag_classifications} in Web apps list layout

    To be able to use the {tag_classifications} in the Web app list layout, list would allow for advanced filtering i nthe list layout.    

    Agreed!! Why this wasn't done when they added {tag_itemID} etc. is beyond me! This can be used for so many resources.

  • Module web app list tags - how to start a list to not include the first one?

    Hi
    I have two panels displaying a web app list and want them to follow on from each other, so panel one displays the first one {module_webapps,24027,l,,,,false,1,false,1} and then the second panel displays the 2nd and 3rd.
    How would I go about it?
    Thanks
    J-P

    Hello
    Hope the below helps
    http://prasantabarik.wordpress.com/2013/09/26/pass-querystring-value-from-sharepoint-page-to-app-partclient-web-part/
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Web App List rendering in a table

    I have three webapps listing on this site: http://browncommunicationsgroup.businesscatalyst.com/. The top slider, The area under "The Work" and in a modal window that opens when  the view opprtunities link is clicked. The web app list in the "The Work" is rendering out in a table but the other two aren't. I'm not sure why. Does anyone know of a setting oe what I can do to get rid of these tables?

    Hi Scott,
    Liam is absolutely right, if you define any number for 'items per row' in the module_webapps tag BC renders the webapp list as a table. Once the number is removed BC will render whatever you have setup in your webapp list template. Hopefully this will be updated in the BC documentation soon as it is not clear that tables are used here by default.
    Had a look at the demo site link, love the design.
    Cheers
    Ken

  • How to use isotope to filter web apps?

    Hi,
    I just want to ask on how to use isotopes jquery plugin to filter the web app entries by categories?
    Thanks.
    Hernan

    Hi sb00349044,
    I am locking this question since it's a duplicate from your other post:
    * [https://support.mozilla.org/en-US/questions/1025653]
    Development related questions are not in the scope of the SUMO forums. Although it's possible that some contributors may be knowledgeable about developing for Firefox OS, and may offer some suggestions, these forums are aimed at assisting users with assisting end-users of Firefox OS.
    As I mentioned in your other post, por developer-related questions, you may have better luck finding help through MDN (Mozilla Developer Network) and StackOverflow. You can find these links below:
    * [https://developer.mozilla.org/en-US/ Mozilla Developer Network]
    * [https://developer.mozilla.org/en-US/docs/Web/API/Web_Bluetooth_API WebBluetooth API on MDN]
    * [http://stackoverflow.com/questions/tagged/firefox-os Firefox OS on StackOverflow]
    You may also send your question to one of Mozilla's Mailing Lists that are related to this topic. Please find the mailing lists on the link below:
    * [https://lists.mozilla.org/listinfo]
    Thanks,
    - Ralph

  • Liquid sorting web app list items

    FIltering is great in Liquid, but sorting the data by custom fields is something which our clients are really asking for.
    Trying to say to a client, you can only sort alphabetically etc. is really making BC seem really unfriendly. Please, please, please can this be added or someone show me how this can be achieved without writing hundreds of lines of JavaScript for something which is so rudimentary in other languages / programming systems.

    Hope I understand the question correctly.
    Are you trying to allow the customer to set the sort order? And/or allow the customer to categories web app items into groups? Or simply, sort the data by a particular custom field, such a category?
    Here's a simply solution I've got working: FAQs grouped into categories. I took this one step further and allowed my customers to even edit their categories, but you can hard code this per site if you like.
    1) Collect the web app data into collections, so we can sort by custom fields.
    {module_webapps render="collection" id="FAQs - Questions" filter="all" hideEmptyMessage="false" sortType="ALPHABETICAL" collection="faqsQuestions" template=""}
    {module_webapps render="collection" id="FAQs - Categories" filter="all" hideEmptyMessage="false" sortType="ALPHABETICAL" collection="faqsCategories" template=""}
    2) If you want to list all the categories or your custom fields (which are editable by the client in my case):
    {% if faqsCategories.items -%}
            <ul class="faq-categories">
    {% for category in faqsCategories.items  -%}
                <li><a href="#{{category.name | replace: ' ','-'}}">{{category.name}}</a></li>
    {% endfor -%}
            </ul>
    {% endif -%}
    3) Now display your web app data sorted by custom field type:
    {% if faqsCategories.items -%}
    {% for category in faqsCategories.items  -%}
                <h2>{{category.name}}</h2>
                <ul id="{{category.name | replace: ' ','-'}}" class="accordion">
    {% for question in faqsQuestions.items  -%}
    {% if question.Category_id == category.itemID -%}
                    <li>
                        <a href="#panel{{question.itemID}}">{{question.name}}</a>
                        <div id="panel{{question.itemID}}" class="content">
    {{question.description}}
                        </div>
                    </li>
    {% endif -%}
    {% endfor -%}
                </ul>
    {% endfor -%}
    {% endif -%}
    The above demonstrates how you can sort web app data by a custom field type.
    IMO I don't think this is something BC should be expected to produce (but I could be persuaded )
    Hope this helps and I hope I did not go on a tangent.
    Cheers,
    Stepehn

  • How to create a web app list which is divided by months

    Hi,
    I'm trying to create a list of calendar events similar to the one on this site 2015 Event Schedule - g20.org but not as complicated, as I don't need any animation, just to list but have the months as section headers.
    I presume I can start of by creating a web app with the bespoke fields that I need, and it can be weighted by the date that I set within the app? The only thing that I'm not quite working out is how to get the months to display, would it be a matter of creating classifications for the months? That sounds as if it may become to over complicated.
    Thanks
    J-P

    Thanks Liam - I just checked out the Blog, for anyone else interested - http://www.businesscatalyst.com/_blog/BC_Blog/post/January_2013_System_Update_-_Fresh_UI_i mprovements,_Web_App_enhancements_and_more/
    "Render Web App items inside a sub-folder, such as /folder/subfolder/webapp-name. For example, you could have /blog/authors/bogdan (where Bogdan is the Web App item name)"

  • 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()

  • 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!

  • How can I add a Last Update to a web page with a web app.

    I would like to know how to update a webpage whenever a web app item has been added or updated last.
    I have the tag {tag_lastupdatedate}  but it only works is only for the web app list or details page.
    I want to be able to add the date and time as to when the entire list was last updated. Any suggestions? thanks!

    Hi DLSAgency,
    There is a module called {module_lastupdated} and it will display the date when the web page it's on has been last updated, but there is no module that will display when the web app list inside that page was last updated. There no such functionality in BC.
    Cheers,
    Mario

  • 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.

  • BC webMarketing plan and web apps

    I've just built a site in BC using web apps. The site was paid foryesterday, went for the webMarketing plan, and now access to the web apps have dissappeared. I thought I had the right plan as, on this page, http://www.businesscatalyst.com/pricing/monthly when hovering over the listed item "Built-In-Modules" it states that web apps are available to take your site to the next level. However, having done some further investigation into why I no longer have access I came across this page http://helpx.adobe.com/business-catalyst/kb/detailed-plan-breakdown.html and that lists them as only being available in the webCommerce plan.
    This is all pretty annoying as conflicting information has been provided, and the hosting plan is going to cost double what I originally thought. Am I right in thinking I have been mislead here, or have I mis interpreted something?
    Grant

    Hi Grant,
    Web apps and modules are seperate entities. It does not say web apps but modules.
    You can clearly see in the webCommerce you have Custom web apps listed there.
    The tooltip though is wrong, that does read incorectly and I have reached out to the website team to change that.
    Wont be intended, it is a new site for them that went live before xmas and being in the industry we all know we spend a bit of time making a tweaks, fixes and changes for a bit of time after.
    I am sure they will be very grateful for the good spot from yourself on this

  • Is there any way to get the PivotTable Field List to appear in an embedded Excel Web Apps spreadsheet?

    The PivotTable Field List shows up fine when using Excel Web Apps normally. It doesn't appear to be accesible via the javascript API and the main
    Excel Web App cannot be embeded in a frame. Any ideas?

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Excel, this issue is more related to Excel Web app develop. I recommend you post the question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Thanks
    George Zhao
    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 "[email protected]"

  • HELP: "web-app" does not allow "filter"

    Here is my web.xml, but everytime I tried to start the web server 6.1, it complains:
    info: CORE3282: stdout: PARSE error at line 108 column -1
    info: CORE3282: stdout: org.xml.sax.SAXParseException: Element "web-app" does not allow "filter" here.
    failure: ContextConfig[simple] WEB3524: Parse error in application web.xml
    org.xml.sax.SAXParseException: Element "web-app" does not allow "filter" here.
    at org.apache.crimson.parser.Parser2.error(Parser2.java:3160)
    The following is my web.xml file, thank you let me know what make it!
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">
    <web-app>
    <display-name>webapps-simple</display-name>
    <description>
    The jakarta-tomcat-4.0.3 sample apps ports over to Sun One Web Server.
    </description>
    <distributable></distributable>
    <servlet>
    <servlet-name>HelloWorldExample</servlet-name> <servlet-class>samples.webapps.simple.servlet.HelloWorldExample</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>HelloWorldExample</servlet-name>
    <url-pattern>/helloworld</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    <taglib> <taglib-uri>http://java.apache.org/tomcat/examples-taglib</taglib-uri> <taglib-location>/WEB-INF/tlds/example-taglib.tld</taglib-location>
    </taglib>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Protected Area</web-resource-name>
    <url-pattern>/jsp/security/protected/*</url-pattern>
    <http-method>DELETE</http-method>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    <http-method>PUT</http-method>
    </web-resource-collection>
    <auth-constraint>
    <role-name>tomcat</role-name>
    <role-name>role1</role-name>
    </auth-constraint>
    </security-constraint>
    <filter>
    <filter-name>Validation Filter</filter-name> <filter-class>filter.ISValidationFilter</filter-class>
    <init-param> <param-name>onlyAllowRequestWithToken</param-name>
    <param-value>true</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>Validation Filter</filter-name>
    <url-pattern>/filtered/*</url-pattern>
    </filter-mapping>
    </web-app>

    I also getting the same error
    my web.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
         <filter>
              <filter-name>Security Filter</filter-name>
              <filter-class>org.securityfilter.filter.SecurityFilter</filter-class>
              <init-param>
                   <param-name>config</param-name>
                   <param-value>/WEB-INF/securityfilter-config.xml</param-value>
                   <description>Configuration file location (this is the default value)</description>
              </init-param>
              <init-param>
                   <param-name>validate</param-name>
                   <param-value>true</param-value>
                   <description>Validate config file if set to true</description>
              </init-param>
         </filter>
         <filter-mapping>
              <filter-name>Security Filter</filter-name>
              <url-pattern>/*</url-pattern>
         </filter-mapping>
    <!-- Action Servlet Configuration -->
    <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
    <param-name>debug</param-name>
    <param-value>3</param-value>
    </init-param>
         <init-param>
              <param-name>application</param-name>
              <param-value>ApplicationResources</param-value>
         </init-param>
    <init-param>
    <param-name>detail</param-name>
    <param-value>3</param-value>
    </init-param>
    <load-on-startup>2</load-on-startup>
    </servlet>
    <!-- Action Servlet Mapping -->
    <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <!-- The Welcome File List -->
    <welcome-file-list>
    <welcome-file>abc.jsp</welcome-file>
    </welcome-file-list>
    <taglib>
    <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
    </taglib>
    </web-app>
    if I change as you said
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    line with
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    then it's not loading the application
    pls suggest me
    my mail id is [email protected]

  • How do I use the alternate list template when rendering web app items to a page?

    I need to have the ability to use the main list template on particular pages, but then use different markup for other pages - is there a way that I can specify the alternate list template within the module tag?

    Hi Matt, You should read about web apps here:
    http://helpx.adobe.com/content/help/en/business-catalyst/partner/web-apps-module-create-cu stom.html
    And module reference here:
    http://helpx.adobe.com/business-catalyst/kb/modules-quick-reference.html
    If you insert through the admin and click customise you will see the option to use listbackup. You will also see that layout availible via FTP and in the admin or DW.
    Here you can see where in the module paramaters the option to choose listbackup occurs:
    http://helpx.adobe.com/business-catalyst/kb/modules-quick-reference.html#id_65138

Maybe you are looking for

  • Financial Reporting 11.1.2.507 - pages from a report

    Hello, I was designing a report on Financial Reporting Studio, but dimensions from pages are shown separates by commas in only one combo box. What I need is to have one combo box per each dimension. Please, We will appreciate your valuable response.

  • Help needed please, with Iphone stuck with apple picture and progress bar after software update attempted

    Help needed please, everytime I try to update the software version on my iphone it comes up with a message saying it could not be completed and is now frozen with the apple picture and progress bar on it. Do I unplug it and hope the macbook pro sees

  • Stringtokenizer, swing and memory

    i lately found that the stringtokenizer eats up lots of memory, i tried to set vars to null and called sys gc quite often but they didnt seem to be of much help. ok, here is what i was doing: i read in a quite a big txt file, about 400k lines, and th

  • How do I get my Apple TV NOT to control my Macbook volume?

    We just recently bought an Apple TV. We synced it to our new remote to control volume and everything. Now, when we're on the Apple TV, when we move up and down on the screen, my volume on my Macbook Pro goes up and down with the tv. How do I get that

  • Problems Pairing with Garmin Nuvi 265W

    Bought a new Garmin Nuvi 265W GPS. Set the unit up. It paired immediately with iPhone and worked without issue. Then as a last step in the setup I registered the Nuvi with Garmin. Big mistake. During the registration Garmin wrote something to the Nuv