Sorting Challenge

Hello,
I have a dataset variable created from an XML file. I would
like to create two Spry repeat regions, one sorting the data by the
"title" column, the other sorting the data by the "name" column
when the page loads.
Although I can accomplish this by creating two datasets from
the XML file and sorting each appropriately onload, this requires
that the XML file be retrieved twice for speed and simplicity I am
attempting to do this with only one dataset (my actual application
is a little more complicated than this example).
I attempted to do this by creating a Spry region for the
dataset containing a Spry repeat like this:
<dvi spry:repeat="ds1.sort('title', 'descending')">
{title}
<div>
I get an error message "Failed to retrieve data set
(ds1.sort('title','descending')) for spry:repeat." The data is
displayed bu it is not sorted by my filter, it is ordered by the
original onload order of the dataset.
Is there a way to sort dataset data for a repeat region
"inline" without user interaction?

The XML data sets use an internal load manager that caches
data. By default this cache is on, so if 2 data sets load the exact
same URL, then only one request is made to the server, and both
data sets share the results of the request.
If for some reason you've turned off caching, then you will
need to look at this sample to see how to make 2 data sets share
the same data:
http://labs.adobe.com/technologies/spry/samples/data_region/SharingDataBetweenDataSets.htm l
--== Kin ==--

Similar Messages

  • Challenge: Grab N rows AFTER performing sort

    I am not an SOA developer, but am working with a team of people who use the tool to develop software for us. I have stated a business requirement which the developers tell me SOA cannot do. I am certain they are wrong, but not being versed in SOA, I'm unable to debate the point without turning to experts for help.
    All I want to do is select N+ rows from my table after it has been sorted on the "importance" column, i.e., "Give me the top 100 rows ordered by importance". I am also filtering on a "status" column, taking only those rows that have statue='A'.
    To code this in raw SQL, I would simply say:
    SELECT *
    FROM (
    SELECT <my fields>
    FROM <my table>
    WHERE
    STATUS = 'A'
    ORDER BY importance ASC
    ) where rownum <=100
    The way they have solved this issue in SOA is generating the following (again in native SQL):
    SELECT <my fields>
    FROM <my table>
    WHERE
    STATUS = 'A'
    AND ROWNUM <=100
    ORDER BY importance ASC
    These two are not equivalent, and the second query does not satisfy the goal. The developers are telling me that it is impossible to satisfy my query using SOA.
    The actual SQL that got generated by SOA is:
         SELECT <my fields>
    FROM <my table>
    WHERE
    STATUS = :1
    AND ROWNUM <= :2
    ORDER BY importance ASC
    FOR UPDATE NOWAIT
    Is there some way to get SOA to generate THIS instead? :
    SELECT <my fields>
    FROM (
         SELECT <my fields>
    FROM <my table>
    WHERE
    STATUS = :1
    ORDER BY importance ASC
    WHERE ROWNUM <= :2
    FOR UPDATE NOWAIT
    Edited by: user10593614 on Apr 26, 2012 6:49 AM

    The DB Adapter is able to call PLSQL API's.
    I have copied and pasted some code we used from one of recent patches:
    - Create a type var for the results of your query
    CREATE OR REPLACE TYPE ICSOA_ARAUTOINV_DISTRIB_TYP AS OBJECT(
    FIELD1 VARCHAR2(30),
    FIELD2 VARCHAR2(30)
    - Create a table of this type
    CREATE OR REPLACE TYPE ICSOA_ARAUTOINV_DISTRIB_TBL AS TABLE OF ICSOA_ARAUTOINV_DISTRIB_TYP;
    - Create your PLSQL using the params you need as simple types something like: (In a package)
    function CreateAction(
         p_param1 in number,
         p_parm2 in VARCHAR2,
         p_result out ICSOA_ARAUTOINV_DISTRIB_TBL,
         p_err_message out varchar2
    ) return number;
    - your fuction devlaration section needs a cursor something like
    cursor c_lines_rsp(p_1 in number, p_2 in varchar2) is
    select ICSOA_ARAUTOINV_DISTRIB_TYP(123,'rrr') from dual
    where p_1=1 and p_2='abc';
    - in your plsql have it return 0 on success and in the exception handler get it to put the error message in p_err_message:
    begin
    --use cursor to get data
    OPEN c_lines_rsp(p_param1,p_param2);
    FETCH c_lines_rsp BULK COLLECT INTO p_result;
    CLOSE c_lines_rsp;
    return 0;
    EXCEPTION
    WHEN OTHERS THEN
    x_err_message := 'Unknown Error ' || sqlerrm || ' ' || DBMS_UTILITY.FORMAT_ERROR_BACKTRACE;
    return 99;
    end;
    If you point the DB adapater at this it will create all the nessecary xml's and wsdls. It should be easy to call this from a BPEL process.
    The DB Adapter will create the object var and table but prefer creating my own as it fits in better with the patching process.
    From experence I have learned to always return the error message to BPEL it makes debugging a lot easier.
    oh and you shouldn't use and commit or rollback statements in your PLSQL if you are using XA db connections. (SOA will preform a commit for you)
    Robert
    Edited by: RobertMetcalf on Apr 26, 2012 4:09 PM

  • Sorting Playlist is a Challenge

    For some reasons I am not able to get the hang of sorting by multiple fields, for example, I have multiple playlists that I want sorted by Date Added descending, and within that by Album
    Example:
    Date Added 2009.09.15
    Album A1
    B1
    C1
    D1
    Date Added 2009.09.02
    Album A2
    B2
    C2
    .. and so on. Is it possible?

    But I believe that the OP wants to "reset the count",
    so to speak, on any line seperator character found in
    the original data. So, at most 70 chars per line, but
    possibly less if the original data contains a line
    seperator.
    Leeright, right...
    final char RETURN = '\n';
    StringBuffer buffer = new StringBuffer(input);
    int next = 0;
    int tempNext;
    do
       tempNext = buffer.toString().indexOf(RETURN, next);
       if (tempNext < next || tempNext > next + 70)
          next += 70;
       else
          next = tempNext;
       if (next > buffer.length())
          break;
       buffer.insert(RETURN, next);
       next++;
    } while(next < buffer.length())

  • Sort Datetime and Varchar Challenge

    Hi! I want to sort datetime (converted to varchar) and varchar together , here is test data generation sql.
    SELECT CONVERT(VARCHAR(10),GETDATE()-3,111) AS TEST_DATE INTO #TMP_TEST
    INSERT INTO #TMP_TEST SELECT CONVERT(VARCHAR(10),GETDATE()-5,111)
    INSERT INTO #TMP_TEST SELECT CONVERT(VARCHAR(10),GETDATE()-7,111)
    My expected result should be date in descending order and 'Not Specified' on bottom.
    I've tried following sql but 'Not Specified' always on top.
    SELECT * FROM #TMP_TEST
    UNION ALL
    SELECT 'Not Specified'
    ORDER BY TEST_DATE DESC
    A very bad workaround is to add a space in the beginning of 'Not Specified', like this ' Not Specified' and the result works.
    Just want to consult if there is a better way to meet my requirement. 
    BTW, TEST_DATE list would be used in Reporting Service query criteria, let user pick a date to query. 'Not Specified' means query ALL TEST_DATE.
    Thank you in advance.

    Check this conditional order by statement:
    SELECT  CONVERT(VARCHAR(10),GETDATE()-3,111) AS TEST_DATE INTO #TMP_TEST
    INSERT INTO #TMP_TEST SELECT  CONVERT(VARCHAR(10),GETDATE()-5,111)
    INSERT INTO #TMP_TEST SELECT  CONVERT(VARCHAR(10),GETDATE()-7,111)
    INSERT INTO #TMP_TEST SELECT  CONVERT(VARCHAR(10),GETDATE()-6,111)
    INSERT INTO #TMP_TEST SELECT  CONVERT(VARCHAR(10),GETDATE()-1,111)
    INSERT INTO #TMP_TEST SELECT  'Unknown'
    SELECT * FROM #TMP_TEST ORDER BY CASE WHEN ISDATE(TEST_DATE) = 1 THEN TEST_DATE END DESC 

  • A sort of KeyListener without a GUI Component?

    a sort of KeyListener without a GUI Component? ( or any trick that will do)?
    please be patient with my question
    I can't express myself very well but it's very important.
    Please help me I need an example how to implement
    a way to detect some combination of keystrokes in java without
    any GUI ( without AWT or Swing frames ...)
    just the console (DOS or Linux shell window) or with a minimzed
    java frame (awt or swing...) you know, MINIMIZED= not in focus.
    in other words if the user press ctrl + alt +shift ...or some
    other combination... ANYTIME ,and the java program is running in the
    background, is there a way to detect that,
    ... my problem if I use a frame (AWT or SWING) the windows must
    be in focus and NOT MINIMIZED..
    if I use
    someObject.addKeylistener(someComponent);
    then the "someComponent" must be in focus, am I right?
    What I'm coding is a program that if you highlight ANY text in
    ANY OS window, a java window (frame) should pop up and match the
    selected text in a dictionary file and brings me the meaning
    ( or a person's phone number , or
    a book author ...etc.)
    MY CHALLENGE IS WITHOUT PRESSING (Ctrl+C) to copy and paste
    ...etc. and WITHOUT MONITORING THE OS's CLIPBOARD ...I just want to
    have the feature that the user simply highlight a text in ANY
    window anywhere then press Ctrl+shift or some other combination,
    then MY JAVA PROGRAM IS TRIGGERED and it should EMULATE SOME
    KEYSTROKES OF Ctrl+C and then paste the clipboard
    somewhere in my program...with all that AUTOMATION BEING in the background.
    remember that my whole program ALL THE TIME MUST BE MINIMIZED AND
    NOT IN FOCUS
    or just running in the background (using javaw)..
    is there any trick ? pleeeeeeze!!!
    i'm not trying to write a sort of the spying so-called "key-logger"
    purely in java but it's a very similar challenge.
    please reply if you have questions
    I you could please answer me , then guys this would be very
    valuable technique that I need urgently. Thanks!

    DO NOT CROSS POST especially since this has nothing to do with game development at all. I can understand if it was in Java programming and New to Java but even then pick a forum and post it to that one and that one only.

  • Using iPad in the Enterprise; close but challenges......

    Getting closer to being able to use iPad in the Enterprise.  Two challenges so far; sorting functions in Numbers Application not existent? Work around? and the second issue, tracking changes in a word document or Pages document when using Pages on iPad?
    Can't analyze data without sorting feature.  Can't review legal or contracts without seeing who changed what?  Any workarounds besides use my Mac Air?
    Thanks

    Getting closer to being able to use iPad in the Enterprise.  Two challenges so far; sorting functions in Numbers Application not existent? Work around? and the second issue, tracking changes in a word document or Pages document when using Pages on iPad?
    Can't analyze data without sorting feature.  Can't review legal or contracts without seeing who changed what?  Any workarounds besides use my Mac Air?
    Thanks

  • CM25: Sort standard table based on custom table.

    Hi Experts,
    I need to sort the CM25 capacity table based on a ZTABLE where we will define the sequence number of each material. So when CM25 is executed the material should get sorted based on sequence number maintained in Ztable. Now the challenge is how to achieve this sorting before we display the capacity table.
    anybody has faced such scenerio please help us.
    There are few user exits available but not able to find out how to achieve the required functionality.
    Regards,
    Raghav
    Edited by: Julius Bussche on Jul 30, 2009 9:29 AM
    In future threads with meaningless subject titles will simply be deleted as you appear to be doing this intentionally

    First, let me say that I have no experience with this CM25 table and where/how it is used or displayed, but here's how I look at it:
    But what is the real problem?
    1. Don't know the user exit / BAdI to be used?
    2. Don't know how to do the sorting?
    3. .....?
    Answer:
    1. This will be a matter of trying I would say and reading the documentation of the exit/BAdI.
    2. You can do dynamic sorting of an internal table (if it is an internal table that is used before displaying it).
    DATA: lv_sort1 TYPE CHAR10 VALUE 'NAME_OF_COLUMN_FROM_ZTABLE',
               lv_sort2 TYPE CHAR10 VALUE 'NAME_OF_OTHER_COLUMN_FROM_ZTABLE'.
    SORT itab BY (lv_sort1) ASCENDING (lv_sort2) DESCENDING.
    Edited by: Micky Oestreich on Jul 30, 2009 7:34 AM

  • How can I sort the paragraphs in the New or Edit Cross-Reference dialog?

    I've got a document with over 100 figures, all are cross-referenced. When I create a new cross-reference I select the paragraph style on the left of the dialog, then the paragraph for the cross-reference. The paragraphs on the right side are not completely sorted. Is there a way that I can keep these sorted.Fortunately, all the figures are numbered which makes it a bit easier.  When I use a non-numbered paragraph, it can be challenging. The fact that the list (on my monitor) is really tiny doesn't make it easier.

    Sorting via the Views menu in the Library only shows the bookmarks in the chosen sort order and doesn't change them permanently (hence the Views name of that menu).<br />
    Clicking on the header does the same.<br />
    If you want to sort bookmarks then you need to right-click a folder and use "Sort By Name" to sort that folder.<br />
    You can't sort individual bookmarks, only folder can be sorted that way.<br />

  • A challenge to Adobe: Allow me to use inline styles in DW by default or I dump DW

    Years ago I switched from FP to DW because FP started forcing people to use CSS over HTML. That was FP 2000. I switched to DW because it respected my code... Now that CSS is mainstream and we are all in love with it, DW CS4 decides to throw a bone and tell me to fetch -- forces me to use CSS rules. I am fine with Adobe hurting my intelligence but at the very least I need the ability to convert CSS rules to inline styles. I do a lot of HTML emails for clients and as I am sure you know, Adobe, most [web] email clients ignore external CSS and <style> tag. Or let me put it this way: I simply want to choose between inline style and rules based on type of project. No questions or comments please.
    So Adobe, you can remove this post right away if you like, but here is the challenge for you: If in a month you do not update DW SC4 to allow me to choose whether I want to use CSS rules at all + if you do not provide the ability to convert all CSS rules in a page to all inline I dump DW altogether. How's that? Also please check your records and see that I recently purchased your CS4 Master Collection. I am a serious CS4 user and this is a serious challenge.
    With DW CS4 you abandoned DW's character of being a TOOL that lets users decide how to code. Redemption period of 1 months starts.... NOW. Tic toc, tic, toc.

    Hey anygiven. Appreciate your observations. I also feel that Adobe has lost its way as far as the Web is concerned.
    Here's another example from the Dreamweaver Help files. In the second video down on the Dreamweaver CS4 launch screen, called "Live View" (which isn't, BTW), the Adobe talking heads spend a lot of time on how to use a Yahoo calendar widget to create a calender of coming attractions. They make it sound cool and contempo and "next generation."
    As a longtime webmaster with a small client who owns a bar & grill on the Oregon coast, I react to this Adobe video in two ways. First, if my client's competition is using Dreamweaver and following Adobe's directives, I'm absolutely thrilled. Couldn't be happier. Here's why. In the Real World, it's crucial to get search engine traffic to the calendars. But if you do what Abobe suggests in their "Live View" (Not) video, you will get just about zero search engine traffic to your calendar because the search engines can't fully index pages whose content changes in response to user actions! Boiled down, if you do it Adobe's way you'll spend a lot of time and energy to get significantly less functionality in your coming attractions calendar, and thereby deliver less value to your client.
    So in a way, Adobe's Real World Web cluelessness actually helps me by making Adobe-led webmasters less effective and easier to beat. The problem here -- for me and everyone else -- is that is that Adobe and Dreamweaver have no competition any more. I'd be delighted to stand on the shore and watch the grief on the good ship Adobe from the distance, but I can't do that because in the so-called "free market economy" I don't have that fundamental freedom of choice any more.
    I've also begun to wonder about my freedom to express my views here. Last month, I posted a comment noting the basic problem with the Dreamweaver CS4 calendar widget video in the comments section at the bottom of http://tv.adobe.com/watch/inside-the-dreamlabs/dreamweaver-cs4-live-preview/, and it was deleted by Adobe. As of February 22, 2010, the last comment on the page now reads: "Excellent video." That'll take care of the issue! I paid $800 for CS4 (on top of a shelf load of Adobe products going all the way back to 1992) and I logged in, but I don't get to offer an honest (and helpful) comment if it doesn't support the current Adobe dogma?
    I hope that's not the case. I hope there's just some sort of honest misunderstanding here. I also hope that Adobe can appreciate that this is not just empty complaining. I'm not sitting here moving my mouth because it feels good. I'm taking the time out of a very busy morning to offer these comments because as an independent Web developer I believe it's imperative for Adobe to rethink where it's taking Dreamweaver.
    Among the issues crying out for Adobe's reconsideration:
    * Cascading Style Sheets. CSS is a hideously bad implementation of a decent-enough idea. Because of its inherent design flaws, CSS will never be adopted widely UNLESS people don't have a choice. Adobe should stop making Dreamweaver an agent of Web totalitarianism by removing the webmaster's choices as to how he/she constructs their pages. Just say "no" to the Code Nazis.
    * Feature Loss. Adobe needs to start adding features and functionality to Dreamweaver, instead of taking features out as is the case with Dreamweaver CS4. Like the man said, Job One should be to bring Dreamweaver up to the same functionality that FrontPage had 15 years ago in 1995, including all the Web Bot functions. (I realize that it might take a couple of versions to get Dreamweaver up to full FrontPage functionality, but high on my list for the first version upgrade would be a robust threaded discussion group component AND the ability to include blog-like comments at the bottom of the pages.)
    Like to see some positive response here from Adobe to these issues that have been raised by longtime, professional customers...

  • Color correction challenge, PP5.5 Mac, ProRes to WMV

    I'm eager to complete my transition from FC Studio to Production Premium CS5.5, but I'm challenged to ensure consistent color in my ProRes to WMV workflow. Any advice would be appreciated.
    My shooting gear: EX1R, w and w/o Nanoflash
    Editing gear: 2008 MacPro (3.1), OSX 10.6.7, 10 GB RAM, ATI Raedon 4870
    Workflow (FCP): Acquire footage, edit native (XD CAM EX/XDCAM HD22), render sequence to ProRes 422, transcode via Quicktime 7 Pro/Flip for Mac to produce WMV files for my PC clients.
    Workflow CS5.5 (intended:) Acquire footage, edit native (XDCAM HD 422 via Nanoflash), output sequence to ProRes, transcode to WMV via Quicktime 7 Pro/Flip for Mac HD. After I put a "trial" sequence together in PP5.5, I adjust footage with 3-way color corrector. Here's where the fun starts:
    Process: I attempt to create a "master file" from the sequence, using AME with output set for Pro Res. The next intended step would be to open the file in Quicktime Pro 7, then encode via Flip for Mac to produce a smaller WMV file for my clients.
    Outcome (1) The results look as though color correction was bypassed completely. After much trial and error, I discovered that when I encoded using ProRes 4444, color corrections were preserved. Yet when I transcoded from 4444 to wmv, (2) the resulting files appeared to have no color correction. No good.
    I'm stumped! I thought I was on to something when I noticed the "preset" for outputting XDCAM HD422 was not set for "progressive," but it appears to make no difference.
    Sidebar: I experience the same issue regardless of use of XDCAM EX or XDCAM HD422 files. With the latter, I've edited clips in MOV and MXF format. Same outcome.
    Until I get this workflow issue sorted out, I'm stalled in completing my transition to PP. I'd like to have acquired gobs more RAM and an Nvidia Quadro 4800 card already, but I need to know that I've fixed this issue first.
    Any suggestions most welcome.
    Sincerely,
    Tom
    Raleigh, NC

    I finally figured it out! If there are any other FCP to PP traitors out there like me in Mac land, here's a workflow that results in WMVs matching the color corrections created in your PP sequence:
    1) Edit native. In my case, I'm working with "XDCAM HD 422," the result of linking a Nanoflash set for 100 mbps/long gop to my EX1R. Both FCP and PP "read" them as 50 mbps files.
    2) Export media to AME, checking the box, "Match Sequence Settings." With little delay, this produces a file with an mpeg extension (the mpeg-2 codec). In Quicktime player, this yields silent footage with no audio. Bummer. End of story, I thought.
    3) But this time, I brought that same "black" file into Apple Compressor. Using the Flip For Mac plug in, I exported to one of my "regular" settings, 2-pass, VBR, 640x360. The result: a perfect color match with my color corrected PP sequence.
    I'm sure there are alternatives to bringing a file that won't play in Quicktime into Compressor. I'll try Quicktime Pro and Streamclip next. But the point -- I think -- is to not bother with any more intermediate formats/files than one has to.
    Sighs of relief here.
    Tom

  • Looking to Search and Sort String Twice, though am having issues

    I am inputing from an access file a test library, the files in the access file are out of alphabetical order...thus I search and sort and bring these into LV in alphabetical order.  But I am running into the issue of trying to further search and sort the second column of info via the model number:
    example:
    Model ............. Model #
    Zetor               55
    Challenger        55
    Ford                55
    Zetor               66
    Challenger        66
    Ford                 66
    Zetor               45
    Challenger        45
    Ford                45
    Zetor               96
    Challenger        96
    Ford                 96
    Need to Return the Files as per below:
    Zetor               45
    Challenger        45
    Ford                45
    Zetor               55
    Challenger        55
    Ford                55
    Zetor               66
    Challenger        66
    Ford                 66
    Zetor               96
    Challenger        96
    Ford                 96
    Attachments:
    search & sort string.JPG ‏65 KB

    actually in my original post I had a brain-lapse on what the final sort needed to be....
    I was looking for this:
    Challenger        45
    Challenger        55
    Challenger        66
    Challenger        96 Ford                 45
    Ford                 55
    Ford                 66
    Ford                 96
    Zetor                45
    Zetor                55
    Zetor                66
    Zetor                96
     thanks for the quick response.

  • Can members in business rule prompts be sorted

    Hi,
    we have business rules with prompts in accounts as Level 0 of a parent. the users are complaining that these leaf level members in the prompts selection window are not sorted. Is there a way we can display the selection list in prompts alphabetically?
    thanks

    Hello,
    the users see the alias or ID?
    When it is the ID, then I can agree what Sree said. If it is the alias, you have a bigger challenge. Sorting the children on Alias.
    I would recommend to use a relational table for creating the dimension files in EPMA or OutlineLoad.
    Regards,
    Philip Hulsebosch

  • How Do I Sort Events by Event File Name?

    Hi All,
    Searched the forums extensively and can't seem to find anything on point. I'm trying to sort my events in iMovie appropriately and it's a challenge. Some of my events are recent, imported digital videos. Others are old VHS videos from the 80s and 90s converted through video capture devices. Others are simple videos filmed through my point and shoot camera. Bottom line, they only have a digital tag based on two things: the date they were imported into iMovie (analog stuff brought in through video capture) or actual digital tags from a digital video recorder.
    So they only way to really get these events sorted correctly is to name them in a conventional "year-month-day" naming convention and sort, just like other files.
    My problem is that I can't get iMovie to sort this way even after I successfully rename EVERY event (and there's like 150 events at this point).
    Any ideas? It seems simple. How do I sort events WITHIN the iMovie application by event name?
    Thanks,
    -Ben (San Antonio)

    Did the trick! I'd love it if there were a bit more of an assembly line capability to this, as I needed to change the creation date for 154 clips, which involved attaching, adjusting, removing, attaching, adjusting, removing...
    Lot's of mouse work is all.
    BUT it did the trick!
    Thanks,
    -bh-

  • Sort by title

    I have google this question, but mostly found old questions and answers. Sure in 2014 you can sort photos by title?
    I am doing a 365 challenge, and am naming my photos as Day 001 - Some Title, Day 002 - Other Title, etc. I keep the photos on 500px, which generates a random file name (using the 500px plugin to sync to lightroom). So the title only goes in the Title field. But when I look in my 500px/365 collection things are out of order, and there doesn't seem to be any way to sort by 'Title'.
    This seems like such a trivial problem for a photo organization tool, I must be missing something....
    ~S

    I don't think there is any way to sort by title without a plugin or script.
    You can sort a collection by title using a free script I wrote:
    'Order Photos in Collection' ("Title.." preset)
    available here:
    robcole.com - MiscLrScripts
    There are other options if you don't actually need sorting so much as.. - please let me/us know if the script does not suffice.
    PS - the sort options in Lr are indeed lean, and there have been some requests to fatten it up, you may look here:
    Recently active topics in Photoshop Family about Photoshop Lightroom

  • Importing videos: rename uses correct date but sorted to incorrect date folder

    Hello
    I know there is an issue with importing photos directly from a device, that's not what's happening here.
    I  import photos from my camera's SD card and I rename them as they import.  Photos and video are both renamed correctly, but only the photos are sorted correctly.  The videos seem to sort based on the additional time zone adjustment, so mostly they end up in the folder for the next day (corresponding to an additional +12 hr, as though lightroom was adding the time zone correction to the local time rather than to the GMT time).  In gallery view I need to sort by name in order to sort by capture time because the renaming is the only feature that reads the correct capture time.  Sorting by capture time uses the capture time displayed in the metadata (in the right panel in the library module), which seems unrelated to the capture time.  I think it might have somethign to do with the import time, but it doesn't match any of the properties in windows explorer.
    For example:
    I took a video at 2015-02-07 1509, and that time/date appears in it's name
    It was taken in New Zealand in a +12 hr time zone (so GMT time 2015-02-07 0309, and if we apply the time zone correction to the local time it would be 2015-02-08 0309)
    When is was auto-sorted during the import it ended up in the 2015-02-08 folder
    The lightroom metadata capture time is listed as 2015-02-08 2158
    The windows explorer date modified is 2015-02-08 1509 (the correct capture time)
    The windows explorer date created and date accessed are 2015-02-08 11:27
    Note that the camera has GPS and photos are GPS tagged, so they are linked to the time zone.  As far as I can tell the videos are not GPS tagged (no GPS coordinates in properties in windows explorer).
    I'd like for the metadata to show the correct capture time and for the videos to be sorted by that correct capture time.  Lightroo obviosuly has the ability to read the capture time correctly, because it does so for the naming.  I have no idea what's going on here and would be heaps grateful for help from the wonderful adobe forums community (you guys haven't let me down yet, you beat any customer support line I've ever tried).
    PS: This is the first of a few issues I'm having with lightroom and capture time and  videos, so if you like a challenge stay tuned as I post them all up.  I'm still going through them but briefly:
    - similar video-only issues with videos from another camera: I have to double check to see if the details are the same
    - I'm having time zone issues with screenshots and saved snapchat photos from my iphone even when they are imported from a separate folder
    - accessing the capture time of iphone screenshots/snapchat photos: they get renamed based on a capture time (either the correct or time zone offset, but always something meaningful and not a blank or random time) but lightroom won't display the capture time metadata when looking at only those images, making the time zone adjustment very difficult

    LR's support for video metadata is incomplete and buggy.  Add your vote and opinion to this thread: Lightroom: Metadata applied to videos in Lightroom isn't available in other applications.

Maybe you are looking for

  • Error when Open Financial report in workspace

    Hi,all: I open the Financial report in workspace,it prompts an error windows.Waring message as follow: Thu Oct 15 11:10:57 2009]Local////Error(1051293) Login fails due to invalid login credentials. I confer this warning window,then it prompt another

  • Can't install drivers on Windows XP

    I just installed Windows XP SP3 on my Bootcamp, but couldn't find my OSX discs (Leopard) to install the drivers. So I searched on apple.com and came across this http://support.apple.com/kb/DL830 At the bottom of the page was this Note: This download

  • URGENT! I need help on LDAP - Finding deleted users Attribute "sAMAccount"

    Hi, I am trying to get deleted users from Active Directory after a certain interval. Every time only the differences in the result will be shown. Also I need to get the value of the specific attribute called "sAMAccount" every time for each user(in t

  • Problems in screen painter

    Hi, whenever i used to open my screen painter for editing layout its giving me only alpha screen even i have checked the option in utilities or unchecked tell me what should be the problem

  • ValuePattern.SetValue Throws ElementNotAvailableException (Inner Exception of InvalidOperationException)

    I have a Wpf FrameworkElement derived control that offers a custom AutomationPeer: using System; using System.Collections.Generic; using System.Text; using System.Windows; using System.Windows.Automation.Peers; using System.Windows.Automation.Provide