Using filters in custom library/viewer

I'm building a custom library/viewer using the sample files from Derek Lu's article "Creating an HTML implementation of the DPS default library" as a base. It's a great way to get started! What I would like to do is add functionality to use the filter-functions present in the default library/viewer. Does anyone know if there is a way to get hold of the source-code for the default viewer or if anyone know of any documentation that could assist me in this? Has anyone in here experience in building a custom library/viewer with filter-functionality?
Big thanks for all help I can get :-)
/ Johan

I'm building a custom library/viewer using the sample files from Derek Lu's article "Creating an HTML implementation of the DPS default library" as a base. It's a great way to get started! What I would like to do is add functionality to use the filter-functions present in the default library/viewer. Does anyone know if there is a way to get hold of the source-code for the default viewer or if anyone know of any documentation that could assist me in this? Has anyone in here experience in building a custom library/viewer with filter-functionality?
Big thanks for all help I can get :-)
/ Johan

Similar Messages

  • Using filters in creating a view on Sharepoint calendar

    My office has a Sharepoint site set up, where we mainly use the calendar to record our travel, etc. I've been asked to create public views to filter the calendar according to the different teams in our office. I have no problems with this - have done this
    many times - but am trying to create a view for our largest team, and when I try to filter by their names, there are simply not enough columns available for me to add everyone. Does anyone have a solution for this?

    Hi Natashah,
    You can create a new Choice column with all the team names, when create new event in calendar, select the team name which the event belong to.
    Then when you filter for different team view in calendar, you can use the team name to filter.
    If you want to display more than 10 Filters in the ViewNew.aspx page, you can customize the ViewNew.aspx page in the 12\Tempalte\layouts folder, modify the 10 to the required number (not modify the value width=10).
    Note, back up the ViewNew.aspx page before the modification.
    Thanks
    Regards, Daniel

  • Show custom EditForm from a specific document library view

    Hello,
    I've created a custom EditForm that I would like to show when the user clicks the "<label for="ShouldDisplayEdit">Edit" (link to edit item)</label> icon; however I just want to show this EditForm for a specific view.
    I have a listview webpart (actually an "app") for the library and this specific view set on a page. However, it opens the default edit form instead of the custom one. (StatusEdit.aspx). I don't want to set StatusEdit.aspx as the default, as it
    has fewer fields than the default edit form.
    I am able to hide fields conditionally using SPClientTemplates.TemplateManager.RegisterTemplateOverrides, but it's been a lot of work to try to make it match the requirements I have. I'd really like to have the custom edit form work if it's possible.
    Thank you for your help!
    Best Regards,
    Kevin Worthington

    Hi,
    According to your description, my understanding is that you want to specify the custom EditForm for a specific document library view.
    We can change the link to edit item button url using Jquery to achieve it.
    Here is a code snippet for your reference:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    function changeurl()
    $(' ms-itmHoverEnabled ms-itmhover ms-droppable).find('ms-vb-lastCell ms-cellstyle ms-vb-icon ms-vb-lastCell').attr(‘href’,”http://new url”);
    </script>
    Here are some detailed articles for your reference:
    http://stackoverflow.com/questions/179713/how-to-change-the-href-for-a-hyperlink-using-jquery
    http://stackoverflow.com/questions/8729830/jquery-find-td-of-tr-with-class-and-make-changes-for-a-telerik-mvc-grid
    Thanks
    Best Regards
    Forum Support
    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]
    Jerry Guo
    TechNet Community Support

  • Displaying Document Name With The Summary in a Single Column Using Document Library View.

    Hi All,
    I have a question that relates to SharePoint Document Library Views. I want to view the Documents name with the summary in a single column. Below image shows an example of it. I need this within a SharePoint Document Library. Also I want the height of the
    row to be increased more than the default height. I cannot figure it out how to do that? Could you someone help me to do this. I have inserted the Document Library as an App Part to the page. 
    So could you someone help me to solve this matter?
    Thanks and regards,
    Chiranthaka

    HI Chiranthaka,
    You can create DataView webpart using SPD and then modify the display template according to your need.
    http://deannaschneider.wordpress.com/2012/07/10/item-counts-dvwp-sp2010/
    Hope this will help to solve your problem.
    Best Regards,
    Brij K

  • Displaying Document Name & The Summary in a Single Column Using Document Library View

    Hi All,
    I have a question that relates to SharePoint Document Library Views. I want to view the Documents name with the summary in a single column. Below image shows an example of it. I need this within a SharePoint Document Library. Also I want the height of the row
    to be increased more than the default height. I cannot figure it out how to do that? Could you someone help me to do this. I have inserted the Document Library as an App Part to the page. 
    So could you someone help me to solve this matter?
    Thanks and regards,
    Chiranthaka

    HI Chiranthaka,
    You can create DataView webpart using SPD and then modify the display template according to your need.
    http://deannaschneider.wordpress.com/2012/07/10/item-counts-dvwp-sp2010/
    Hope this will help to solve your problem.
    Best Regards,
    Brij K

  • Custom Split views don't work like the use to pre- Project 2010

    Hi
    Either we've lost some functionality along the way, or there must be another way of doing the following...
    Up until and including version 2007, I was able to create multiple custom split views in a file (or global.mpt) where the I could specify a different Task Form (e.g., "Predecessors & Successors" or the "Work") depending on which custom
    split view I selected.
    In 2010 and 2013, you have to manually select the Task From you want; the custom split view won't can help you get the specific Task Form you want ((e.g., "Predecessors & Successors", "Work").  At least that has been my experience...
    does anyone have a solution apart from needing to write a VBA event handler?
    Thanks in advance,
    \Spiro Theopoulos PMP, MCITP. Montreal, QC (Canada)

    I agree with Dale. Project remembers the last set of details applied in form views such as Task Form. Using VBA event handlers you can change this behavior.
    1. Open the project file on which this change should be applied.
    2. In the View ribbon, click Macro command and select Visual Basic
    3. If you want the details displayed in the Task Form to be applied to the current file, double click "ThisProject" node under the VBAProject(your file name) or else double click "ThisProject" node under ProjectGlobal (Global.MPT)
    4. Paste below lines in the Project_Open event handler. Save the code.
    Private Sub Project_Open(ByVal pj As Project)
        ViewApplyEx ApplyTo:=1, BuiltInView:=pjViewTaskForm
        WindowActivate TopPane:=False
        ViewShowPredecessorsSuccessors
    End Sub
    5. You can replace the last statement ViewShowPredecessorsSuccessors with another statement that is compatible with Task Form view
    Sai PMP, PMI-SP, MCTS Project, MVP Project

  • Using Time.expression in a custom library

    Hello All,
    I am trying to write a piece of code in a custom library. Upon trying to save the code, it tries to compile and kicks out a message "...cannot resolve symbol symbol : class Time location..."
    Does any one know which class to import in order to use the Time function?
    I have already imported  com.redwood.scheduler.api.date.*;
    Thanks
    Daniel

    Hello,
    The code in a library works slightly different then the expressions.
    You can use:
      DateTimeZone myDate = DateTimeZone.expressionNow("add 1 day");
    regards Gerben
    Edited by: G. Blom on Feb 24, 2011 12:49 PM

  • Using images in library view when file is missing

    I have some images in the library but the file is missing. Can I somehow use the image displayed in the library view and export to disk for printing or e-mail? I’m using v4 on a Mac. Thanks.
    Following on from the above I have downloaded the Extract previws help guide. http://helpx.adobe.com/lightroom/kb/extract-previews-lightroom-4.htmlThis runs a script to enable extracts to be made. After a bit of messing about with the process for choosing where to house the extracted files this works perfectly. It has certainly saved me a lot of pain and heartache.
    Message was edited by: David Osmond
    Message was edited by: David Osmond. Now closed.

    Check whether the machine at school has correctly been updated to A§ 8.0.2. Several not so minor bugs were fixed with the updates. also check your files on Illustrator (Mac) and if necessary, re-save them from there.
    Mylenium

  • Custom metadata in Library View

    Hello!
    Is there a way to display custom metadata text on the photo cells in Library View?
    Thank you!

    Nope. And I can't think of a single way to elaborate that answer - sorry.

  • Default Value to Form using Custom Library?

    In Custom Form A, in the global variables i have store the value , How to populate default value to Form B using in custom library.
    I tried using COPY, but its not working?
    COPY('GLOBAL.EXP_PRO',':IT_QF.PROJECT_NUMBER');
    Is their any other way to do it?
    Thanks!

    Zaafran Ahmed  Posted: Oct 26, 2010 2:05 PM
    COPY(:GLOBAL.EXP_PRO,'IT_QF.PROJECT_NUMBER');user12207320 Posted: Oct 26, 2010 2:40 PM
    I tried it throws a error,bad bind variable error >
    This will throw an error because the COPY built-in takes 2 Varchar2 parameters (Source and Destination). When you use the COPY built-in, you pass references to the objects not the objects themselves. Therefore, the reference to the global variable :GLOBAL.EXP_PRO would have to be passed as a string to COPY.
    Looking at your original post, you have a COLAN in the destination string. Try the following:
    COPY('GLOBAL.EXP_PRO',':IT_QF.PROJECT_NUMBER');
    /* Change this statement to: */
    COPY('GLOBAL.EXP_PRO','IT_QF.PROJECT_NUMBER');Craig...

  • Is is possible to use AdobeLibraryAPI.js to create a custom library on Android

    With the iOS App Builder, we are allowed to upload our own custom library Zip file.  The library uses AdobeLibraryAPI.js to interact with entitlement and fetch folios. 
    We are having problems trying to implement the same custom library from our iOS app into our Android app.  Specifically, the login api calls are failing...

    Adobe Reader for iOS doesn't support forms. A few non-Adobe PDF viewers have some support. The one that is the best at this time is Readdle's PDF Expert, which also has decent support for JavaScript, so calculations are supported.

  • Default Value using Custom Library?

    In Custom Form A, in the global variables i have store the value , How to populate default value to Form B using in custom library.
    I tried using COPY, but its not working?
    COPY('GLOBAL.EXP_PRO',':IT_QF.PRO_NUM');
    Is their any other way to do it?
    Thanks!

    Zaafran Ahmed  Posted: Oct 26, 2010 2:05 PM
    COPY(:GLOBAL.EXP_PRO,'IT_QF.PROJECT_NUMBER');user12207320 Posted: Oct 26, 2010 2:40 PM
    I tried it throws a error,bad bind variable error >
    This will throw an error because the COPY built-in takes 2 Varchar2 parameters (Source and Destination). When you use the COPY built-in, you pass references to the objects not the objects themselves. Therefore, the reference to the global variable :GLOBAL.EXP_PRO would have to be passed as a string to COPY.
    Looking at your original post, you have a COLAN in the destination string. Try the following:
    COPY('GLOBAL.EXP_PRO',':IT_QF.PROJECT_NUMBER');
    /* Change this statement to: */
    COPY('GLOBAL.EXP_PRO','IT_QF.PROJECT_NUMBER');Craig...

  • Using custom library?

    Dear all,
    Is it possible to use custom library to enforce users to input some information when user save the records? For example: In the purchase order form (standard), any functions to enforce user to enter comment (another custom form) when save the record changes.
    Best Regards,
    Amy
    Edited by: amychan60 on Nov 24, 2008 11:38 PM

    Although I am not a developer, I believe this is possible using a "zoom" function in CUSTOM.pll. There are some details available in ML Docs 73505.1, 744065.1 and 438787.1. There may be more details in the Application Developer Guide for 11i
    HTH
    Srini

  • Problems installing when using custom library

    I can't install generated application on iPad (IOS report installation error), when I use custom library. Before DPS App Builder v25 all was OK, problems started after 1 feb, when I installed new AppBuilder. I can't install any application (generated from AppBuilder v25) with custom library, incl. reference applications from devnet articles.

    Hi, Neil!
    Thank you for your attantion to my problem. Explain me successful installation on IOS when I use standard library with identical certificates.
    IOS reports "installation failed" only when I switch to custom library.
    P.S.: our friend with another DPS Pro account have the same error. He tries to create 2 "Pro" applications, first installation success, second fail. All certificates and mobileprovisions created yesterday...
    Message was edited by: Yuriy Petrov

  • How to use the JRun Custom tag library wiith Weblogic 5.1?

    Hello,
    is it possible to use the JRUN Tag Library with Bea Weblogic 5.1? We
    got an error message like:
    weblogic.servlet.jsp.JspException: (line -1): Error in tag library at:
    'jrun': T
    here is no setter method for property 'code', for Tag class
    'allaire.taglib.Serv
    letTag'
    Thank you for any info!
    Stefan

    Hi Joe,
    I don't know, however someone that follows the JSP newsgroup [1] may be
    able to help. Could you try your post there.
    Thanks,
    Bruce
    [1]
    http://newsgroups.bea.com/cgi-bin/dnewsweb?cmd=xover&group=weblogic.developer.interest.jsp
    Joe Kamenar wrote:
    >
    I have a question. I need to do a sort on news articles in our database, sorting
    by the date they were posted. I then want to take only the top 6 articles. We
    are using Weblogic 5.1. When I use the following statement, 6 articles are taken
    from the database, then sorted, which ends up leaving out the most recent articles:
    <cm:select contentHome="com.beasys.commerce.axiom.document.Document" query="<%=contentQuery%>"
    sortby = "creationDate DESC, headlineDate DESC" max="6" id="contentList" />
    I need to get ALL the articles for the sort, then just take the most recent 6.
    So, I know that I can use the following code and monitor the counter variable,
    "i". But, how do i do this to only display the top 6 items?
    <es:foreachinarray id="content" array="contentList" type="com.beasys.commerce.axiom.content.Content"
    counterId="i">
    <% myStr=content.getIdentifier(); %>
    <% if (i<6) {
    %>
    <div class="marginText">
    <cm:printproperty id="content" name="title" encode="html" />  
    <a href="<%=new String(news_display.jsp?id="+myStr)%">">more</a>
    </div>
    <% } %>
    </es:foreachinarray>
    However, when I run this, no results show up. What is the correct way to do this?
    - Joe</a>

Maybe you are looking for