List View - Remove Group By Headers - Column Names

I have a List View web part using Group By. However, when you do that, it uses the Actual column name with a colon in the visual representation.
Also, there is a bar with the name of the column showing.
I don't want to have either of these showing. I have found pages on the net that tell you how to do this using SPD, but because that causes unghosting, we don't use SPD.
Also, I found this, using Javascript:
http://amitphule.blogspot.com/2011/10/hiding-group-headers-from-sharepoint.html
This works. However, it removes the Editing components of the ribbon also - you can't go back later and do any editing.
Does anyone have any other ideas on this?

Hi,
According to your post, my understanding is that you wanted to remove Group By Headers in the List View web part.
I try to reproduce the issue using the code you provided, however, I can edit the items.
The initial status:
The final status:
Best Regards,
Linda Li
Linda Li
TechNet Community Support

Similar Messages

  • Alias required in SELECT list of cursors to avoid duplicate column names

    I got some error messages while compiling the following.
    DECLARE
         alert_id                              NUMBER;
         CURSOR cur_search IS SELECT c.item_description,
         d.name modelname,
         SUM(b.quentaty),
         SUM(b.balence)
         FROM      item_procurement_history_dtl a,
                        item_procurement_history b,
                        item_master c,
                        model_master d
         WHERE a.item_code = b.item_code
         AND a.lot_no = b.lot_no
         AND a.item_code = c.item_code
         AND b.modelcode = d.modelcode
         AND (c.item_description LIKE '%'||:blk_stock_search_fields.item_name||'%' OR :blk_stock_search_fields.item_name IS NULL)
         AND (d.name LIKE '%'||:blk_stock_search_fields.modelname||'%' OR :blk_stock_search_fields.modelname IS NULL)
         AND (a.status = :blk_stock_search_fields.status OR :blk_stock_search_fields.status IS NULL)
         GROUP BY c.item_description, d.name
         ORDER BY c.item_description, d.name;
    BEGIN
         GO_BLOCK('blk_stock_search_fields');
         CLEAR_BLOCK(NO_VALIDATE);
         FOR i IN cur_search LOOP
         :blk_stock_search_data.item_name                := i.item_description;
              :blk_stock_search_data.modelname               := i.modelname;
              :blk_stock_search_data.tot_qty                    := i.tot_qty;
              :blk_stock_search_data.available_qty     := i.available_qty;
              NEXT_RECORD;
         END LOOP;
         FIRST_RECORD;
         GO_ITEM('blk_stock_search_fields.pb_search');
    END;
    The error is as follows :-
    Error 403 at line 23 column 2
    Alias required in SELECT list of cursors to avoid duplicate column names.
    What will be the solution for this error?
    Thanx and Regards,
    Vikas

    Vikas,
    The problem is that you are referencing a column name in your LOOP that does not exist in your CURSOR. Therefore, Oracle has interpreted this to its BEST guess Exception. This can be resolved as follows:
    DECLARE
       alert_id NUMBER;
       CURSOR cur_search IS
          SELECT c.item_description,
                 d.name modelname,
                 /* You need to ALIAS the product of the SUM() so you can reference it by name.*/
                 SUM(b.quentaty) AS tot_qty,
                 /* Same issue here, you must ALIAS the SUM() of Balance in order to reference it by a name.*/
                 SUM(b.balence) as available_qty
            FROM item_procurement_history_dtl a,
                 item_procurement_history b,
                 item_master c,
                 model_master d
           WHERE a.item_code = b.item_code
             AND a.lot_no = b.lot_no
             AND a.item_code = c.item_code
             AND b.modelcode = d.modelcode
             AND (c.item_description LIKE '%'||:blk_stock_search_fields.item_name||'%' OR :blk_stock_search_fields.item_name IS NULL)
             AND (d.name LIKE '%'||:blk_stock_search_fields.modelname||'%' OR :blk_stock_search_fields.modelname IS NULL)
             AND (a.status = :blk_stock_search_fields.status OR :blk_stock_search_fields.status IS NULL)
           GROUP BY c.item_description, d.name
           ORDER BY c.item_description, d.name;
    BEGIN
       GO_BLOCK('blk_stock_search_fields');
       CLEAR_BLOCK(NO_VALIDATE);
       FOR i IN cur_search LOOP
          :blk_stock_search_data.item_name := i.item_description;
          :blk_stock_search_data.modelname := i.modelname;
          :blk_stock_search_data.tot_qty := i.tot_qty;
          :blk_stock_search_data.available_qty := i.available_qty;
          NEXT_RECORD;
       END LOOP;
       FIRST_RECORD;
       GO_ITEM('blk_stock_search_fields.pb_search');
    END;Just an observation. Also, There are some misspellings in your cursor. Does this match your table?
    Hope this helps.
    Craig...

  • Browser list view - Reel group keeps opening

    In browser list view I have my clips sorted by Reel Name.
    That's great, but as I work through the reels adding keywords I click the little triangle shape to twirl the reel group closed.
    Unfortunately, it keeps reopening at every opportunity.
    As I work through my thousands of clips, it's going to become increasingly tiresome to have to scroll further and further down the browser - unless I can keep the reel groups closed.
    Any ideas, anyone?
    Andy

    Another advantage of list view (for me) is that if there are a number of keywords on the clip, I can see more of them.
    The keyword editor will only stretch a limited amount and sometimes doesn't display all the keywords. It's also impossible to tell from the keyword editor whether there are multiple keyword collections on one long clip (if they overlap).
    In the browser list view, the disclosure triangle tells you there are items to view, and if you twirl it, you can see how many groups of keywords are assigned to that clip. They are listed separately.
    If you stretch out the browser column containing the clip names, you can see more keywords than it's possible to see in the keyword editor without clicking in the editor and navigating with the left or right arrows.
    (Well, I know what I mean, even if nobody else does).
    Andy

  • SharePoint 2010 List View with Group By is Not Sorting Correctly

    My organization has a list in SharePoint 2010 that is being used as a FAQ. The list contains the following columns:
    Question-  Single line of text 
    Answer-  Multiple lines of text 
    Priority-  Number 
    Priority is the importance of the question and is a unique integer number. Higher Priority questions are to be displayed at the top of the list.
    A view has been created to display the Question and Answer columns, grouped by Question, and sorted by Prioity. The problem is that the SharePoint is not sorting by priority. I have added display of Priority and embedded a screen capture showing the order
    going non sequentially from 1,005 to 1,024 to 1,015.
    Is this a known defect? Is there a workaround? Are there other options?
    Regards,
    Darian.

    Hi,
    Based on your description, I have done a test. I can reproduce your issue.
    Per my test, I come up with a conclusion.
    When we group by Question, the list view is be grouped. Then we sort by Priority, actually it is only sort the item within a group rather than the entire list.
    So the items inside of different groups out of order is normal.
    Best Regards,
    Lisa ChenForum 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]
    Lisa Chen
    TechNet Community Support

  • List "View" with current time in column

    Hi.
    I know that list view does not support fields calculated on page load. But I have to realize such functionality.
    Can someone provide options for realizing this?
    "Hack" some internal SQL query, inject JS on a view page, use .NET code somehow?
    Using JS seems as the best solution, but how can I do this?
    Thanks.

    Hi,
    According to your post, my understanding is that you wanted to display the current time in colum.
    The following 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 date(format, timestamp) {
    var that = this,
    jsdate, f, formatChr = /\\?([a-z])/gi,
    formatChrCb,
    // Keep this here (works, but for code commented-out
    // below for file size reasons)
    //, tal= [],
    _pad = function(n, c) {
    n = n.toString();
    return n.length < c ? _pad('0' + n, c, '0') : n;
    txt_words = ["Sun", "Mon", "Tues", "Wednes", "Thurs", "Fri", "Satur", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
    formatChrCb = function(t, s) {
    return f[t] ? f[t]() : s;
    f = {
    // Day
    d: function() { // Day of month w/leading 0; 01..31
    return _pad(f.j(), 2);
    D: function() { // Shorthand day name; Mon...Sun
    return f.l().slice(0, 3);
    j: function() { // Day of month; 1..31
    return jsdate.getDate();
    l: function() { // Full day name; Monday...Sunday
    return txt_words[f.w()] + 'day';
    N: function() { // ISO-8601 day of week; 1[Mon]..7[Sun]
    return f.w() || 7;
    S: function() { // Ordinal suffix for day of month; st, nd, rd, th
    var j = f.j();
    if (j < 4 || j > 20) {
    return (['st', 'nd', 'rd'])[j % 10 - 1];
    else {
    return 'th';
    w: function() { // Day of week; 0[Sun]..6[Sat]
    return jsdate.getDay();
    z: function() { // Day of year; 0..365
    var a = new Date(f.Y(), f.n() - 1, f.j()),
    b = new Date(f.Y(), 0, 1);
    return Math.round((a - b) / 864e5);
    // Week
    W: function() { // ISO-8601 week number
    var a = new Date(f.Y(), f.n() - 1, f.j() - f.N() + 3),
    b = new Date(a.getFullYear(), 0, 4);
    return _pad(1 + Math.round((a - b) / 864e5 / 7), 2);
    // Month
    F: function() { // Full month name; January...December
    return txt_words[6 + f.n()];
    m: function() { // Month w/leading 0; 01...12
    return _pad(f.n(), 2);
    M: function() { // Shorthand month name; Jan...Dec
    return f.F().slice(0, 3);
    n: function() { // Month; 1...12
    return jsdate.getMonth() + 1;
    t: function() { // Days in month; 28...31
    return (new Date(f.Y(), f.n(), 0)).getDate();
    // Year
    L: function() { // Is leap year?; 0 or 1
    var j = f.Y();
    return j % 4 === 0 & j % 100 !== 0 | j % 400 === 0;
    o: function() { // ISO-8601 year
    var n = f.n(),
    W = f.W(),
    Y = f.Y();
    return Y + (n === 12 && W < 9 ? 1 : n === 1 && W > 9 ? -1 : 0);
    Y: function() { // Full year; e.g. 1980...2010
    return jsdate.getFullYear();
    y: function() { // Last two digits of year; 00...99
    return f.Y().toString().slice(-2);
    // Time
    a: function() { // am or pm
    return jsdate.getHours() > 11 ? "pm" : "am";
    A: function() { // AM or PM
    return f.a().toUpperCase();
    B: function() { // Swatch Internet time; 000..999
    var H = jsdate.getUTCHours() * 36e2,
    // Hours
    i = jsdate.getUTCMinutes() * 60,
    // Minutes
    s = jsdate.getUTCSeconds(); // Seconds
    return _pad(Math.floor((H + i + s + 36e2) / 86.4) % 1e3, 3);
    g: function() { // 12-Hours; 1..12
    return f.G() % 12 || 12;
    G: function() { // 24-Hours; 0..23
    return jsdate.getHours();
    h: function() { // 12-Hours w/leading 0; 01..12
    return _pad(f.g(), 2);
    H: function() { // 24-Hours w/leading 0; 00..23
    return _pad(f.G(), 2);
    i: function() { // Minutes w/leading 0; 00..59
    return _pad(jsdate.getMinutes(), 2);
    s: function() { // Seconds w/leading 0; 00..59
    return _pad(jsdate.getSeconds(), 2);
    u: function() { // Microseconds; 000000-999000
    return _pad(jsdate.getMilliseconds() * 1000, 6);
    // Timezone
    e: function() { // Timezone identifier; e.g. Atlantic/Azores, ...
    // The following works, but requires inclusion of the very large
    // timezone_abbreviations_list() function.
    /* return that.date_default_timezone_get();
    throw 'Not supported (see source code of date() for timezone on how to add support)';
    I: function() { // DST observed?; 0 or 1
    // Compares Jan 1 minus Jan 1 UTC to Jul 1 minus Jul 1 UTC.
    // If they are not equal, then DST is observed.
    var a = new Date(f.Y(), 0),
    // Jan 1
    c = Date.UTC(f.Y(), 0),
    // Jan 1 UTC
    b = new Date(f.Y(), 6),
    // Jul 1
    d = Date.UTC(f.Y(), 6); // Jul 1 UTC
    return ((a - c) !== (b - d)) ? 1 : 0;
    O: function() { // Difference to GMT in hour format; e.g. +0200
    var tzo = jsdate.getTimezoneOffset(),
    a = Math.abs(tzo);
    return (tzo > 0 ? "-" : "+") + _pad(Math.floor(a / 60) * 100 + a % 60, 4);
    P: function() { // Difference to GMT w/colon; e.g. +02:00
    var O = f.O();
    return (O.substr(0, 3) + ":" + O.substr(3, 2));
    T: function() { // Timezone abbreviation; e.g. EST, MDT, ...
    // The following works, but requires inclusion of the very
    // large timezone_abbreviations_list() function.
    /* var abbr = '', i = 0, os = 0, default = 0;
    if (!tal.length) {
    tal = that.timezone_abbreviations_list();
    if (that.php_js && that.php_js.default_timezone) {
    default = that.php_js.default_timezone;
    for (abbr in tal) {
    for (i=0; i < tal[abbr].length; i++) {
    if (tal[abbr][i].timezone_id === default) {
    return abbr.toUpperCase();
    for (abbr in tal) {
    for (i = 0; i < tal[abbr].length; i++) {
    os = -jsdate.getTimezoneOffset() * 60;
    if (tal[abbr][i].offset === os) {
    return abbr.toUpperCase();
    return 'UTC';
    Z: function() { // Timezone offset in seconds (-43200...50400)
    return -jsdate.getTimezoneOffset() * 60;
    // Full Date/Time
    c: function() { // ISO-8601 date.
    return 'Y-m-d\\TH:i:sP'.replace(formatChr, formatChrCb);
    r: function() { // RFC 2822
    return 'D, d M Y H:i:s O'.replace(formatChr, formatChrCb);
    U: function() { // Seconds since UNIX epoch
    return jsdate / 1000 | 0;
    this.date = function(format, timestamp) {
    that = this;
    jsdate = (timestamp === undefined ? new Date() : // Not provided
    (timestamp instanceof Date) ? new Date(timestamp) : // JS Date()
    new Date(timestamp * 1000) // UNIX timestamp (auto-convert to int)
    return format.replace(formatChr, formatChrCb);
    return this.date(format, timestamp);
    $(function() {
    $('.ms-noWrap').text(date('l, F jS, Y, h:i:s A'));
    </script>
    Note: You should change the class name to fit your environment.
    http://jsfiddle.net/licson0729/jHHsm/
    More reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/580b9c50-f945-4931-b68f-da68d84e766e/how-to-display-current-date-time-in-share-point-using-jquery
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Problems on selecting views with french characters into column names

    Hi All,
    I have views with column names such as "Détermination Planimétriq" or "Année de construction:*";
    I can get in my c# function this columns names from ALL_VIEWS dictionary table, but if I try to make a selectionby use of an OracleCommand, Oracle returns an "Invalid identifier" error:
    SELECT "Détermination Planimétriq" FROM mytable;
    System.Data.OracleClient.OracleException (0x80131938): ORA-00904: "Determination Planimetriq": invalid identifier at System.Data.OracleClient.OracleConnection.CheckError(OciErrorHandle errorHandle, Int32 rc) at ...
    Any suggestion?...

    Be wary of using character codes outside the Western European "simple" alphanumeric [A-Z0-9] for object names, i.e. columns, table names, function and procedure names, and so on.
    First reason, there is a 30 character limit for most object names, and characters that have to be spelled out with unicode characters take more space, i.e.:
    select dump( 'Détermination Planimétriq'  ) from dual;
    DUMP('D?TERMINATIONPLANIM?TRIQ')
    Typ=96 Len=29: 68,239,[ ... ]Although the varchar string for that column name looks like 25 characters, it needs room for 29 to store the e<acute> character. And could also depend on the client settings. Using case sensitive names is not a best practice, its better to avoid specifying objects with the double quotes.
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/sql_elements008.htm#i27570

  • View of tables with double column names

    Hello,
    my problem is that in my database schema the name of the primary-key-column in one table has the same name as the corresponding foreign key-column in another table. Now i want to create a view of those two tables and get an error (double column names).
    Is there any chance to avoid this error without rename all my column names (cause this happens many many times)?
    Thanks for any help.
    Christoph

    Hi,
    In SQL you cas prefix the column with its data container. Use this and it'll be OK. This is not an error, it's expected and absolutely normal behaviour.
    SQL> desc dual
    Name                                                                                                  Null?    Type
    DUMMY                                                                                                          VARCHAR2(1)
    SQL> select D1.DUMMY, D2.DUMMY
      2  FROM DUAL D1, DUAL D2
      3  WHERE D1.DUMMY = D2.DUMMY;
    D D
    X XRegards,
    Yoann.

  • View the tables with same column name

    Hi all
    I have 10-20 tables and they have some same column names
    How can I know it?
    I mean, I want to know the tables which have the common column names
    Thanks...

    SQL> break on column_name
    SQL> set linesize 1000
    SQL> set pagesize 10000
    SQL> select column_name, owner, table_name
      2  from (select owner, table_name, column_name, count(*) over (partition by column_name) ct
      3        from dba_tab_columns)
      4  where ct>1
    SQL> /
    COLUMN_NAME                    OWNER                          TABLE_NAME
    AADSAS_ID_NBR                  H89UCBAC                       PS_SAD_ADA_CD
                                   H89UCBAC                       PS_SAD_ADA_SUS
                                   H89UCBAC                       PS_SAD_ADA_TMP
    AA_CODE                        H89UCBAC                       PS_RQ_CONDIN_SLVW
                                   H89UCBAC                       PS_RQ_CONDIN_SRCH
                                   H89UCBAC                       PS_DUMMYDESCR_LANG
                                   H89UCBAC                       PS_DUMMY_DESCR
                                   H89UCBAC                       PS_RQ_NOTINCOND_LV
                                   H89UCBAC                       PS_RQ_NOTINCOND_SR
    [...]Nicolas.

  • Excel like 'Freeze column header' functionality in sharepoint OOB list view webpart

    Hi,
    I have OOB external list dropped on a page as listview webpart. It contains many records and hence while scrolling down headers are no available, hence it should freeze all column headers while scrolling down the page. Its directly dragged and dropped
    on site page hence no server side formatting can be done.
    Is there any way we can apply some client side script to freeze column headers to listview webpart while scrolling down? or any settings that can be done to acheive this?
    Thanks in advance.
    Regards,
    Rahul

    Hi Rahul,
    Normal techniques for freezing the header row of an HTML table tend to fall short when it comes to SharePoint 2010 lists due to the lack of THEAD elements.
    You can try something like this, although you may want to test it in various browsers in case the column heading alignment is off.
    <style>
    .ms-viewheadertr{background-color:white;}
    </style>
    <script>
    /* wrap the table in a div, set its height, give it scrollbars, and move it down */
    var myTable = document.querySelector(".ms-listviewtable");
    var wrapperDiv = document.createElement('div');
    wrapperDiv.setAttribute("ID","FreezePaneWrapper");
    wrapperDiv.setAttribute("style","OVERFLOW: auto; HEIGHT: 400px; padding-top:38px;");
    wrapperDiv.appendChild(myTable.cloneNode(true));
    myTable.parentNode.replaceChild(wrapperDiv,myTable);
    /* Freeze the header row and move it up*/
    var headerRow = document.querySelector(".ms-viewheadertr");
    document.getElementById("FreezePaneWrapper").style.width = "" + headerRow.scrollWidth + "px";
    headerRow.style.width = "" + headerRow.scrollWidth + "px";
    headerRow.style.position = "absolute";
    headerRow.style.top = ""+(headerRow.offsetTop-39)+"px";
    /* Tell the header's columns to be the same width as the cells in the first "alternating" row */
    var columns = document.querySelector("table.ms-listviewtable tr.ms-alternating").querySelectorAll("tr>td");
    headers = document.querySelectorAll("tr.ms-viewheadertr th");
    for(var i = 0; i < headers.length; i++){
    if(columns[i].scrollWidth > headers[i].scrollWidth){
    headers[i].style.width = ""+columns[i].scrollWidth + "px";
    }else{
    columns[i].style.width = ""+headers[i].scrollWidth + "px";
    </script>
    Edit: Also, you may want to inspect the HTML attributes on the external list view to be sure the class names match up with the querySelector parameters above. Specifically, the table should have a class of "ms-listviewtable", the header row should
    have a class of "ms-viewheadertr", and rows of alternating background color should have a class of "ms-alternating".
    If any of those are different in your case, you may be able to adjust the above code accordingly.

  • Can I create a view based on two tables that have the same column name?

    I have two tables A and B. Each table has 50+ columns.
    I want to create a view that includes all the columns in A and all the columns in B. I created a view with a select statement that says
    Select A.*, B.*
    From A, B
    where A.id = B.id
    It returns an error because in each table I have a column that keeps track if a record has been changed called Modified_By. That's where it chokes up on I figure. I would like to write the view without explicitly writing each column name from A and B as part of the select statement. The actual select statement works fine and only bombs when trying to turn the select statement into a view.

    You will have to type the full column list at least once. You can save a few keystrokes (i.e. alias. on every column) by providing the column names to the CREATE part instead of in the SELECT part. Something like:
    SQL> desc t
    Name                                      Null?    Type
    ID                                                 NUMBER
    NAME                                               VARCHAR2(10)
    SQL> desc t1
    Name                                      Null?    Type
    T_ID                                               NUMBER
    LOC_ID                                             NUMBER
    NAME                                               VARCHAR2(15)
    SQL> CREATE VIEW t_v (id, t_name, t_id, loc_id, t1_name) AS
      2  SELECT t.*, t1.*
      3  FROM t, t1
      4  WHERE t.id = t1.t_id;
    View created.HTH
    John

  • Error in nested group function used with column name.

    Hi Team,
    If i used nested group function with column name its not working. Could you please any one suggest me.
    How to use it.
    Regards,
    Venkat.
    Please find Spool ........
    SQL> select user_name,max(max(CNT)) from (select USER_NAME,count(*) CNT from v$open_cursor group by USER_NAME)
    2 group by user_name,CNT;
    select user_name,max(max(CNT)) from (select USER_NAME,count(*) CNT from v$open_cursor group by USER_NAME)
    ERROR at line 1:
    ORA-00937: not a single-group group function
    SQL> select max(max(CNT)) from(select USER_NAME,count(*) CNT from v$open_cursor group by USER_NAME)
    2 group by user_name;
    MAX(MAX(CNT))
    605

    Venkat wrote:
    Hi Sayan
    Its giving output like below, but not given maximum CNT.
    SQL> select user_name,max(CNT)from (select USER_NAME,count(*) CNT from v$open_cursor group by USER_NAME)
    2 group by user_name;
    USER_NAME MAX(CNT)
    BANES_LERG 6
    VENE_USER 8
    USER3 339
    DBUS 106
    VEL_USER 37
    SYS 597
    6 rows selected.Check it - Re: Error in nested group function used with column name.
    and previous post

  • Export from SP list to Excel: Excel doesn't show changed colum name. It shows only the original column names, which would be done by the column creation.

    Hello,
    I have an excel list with some columns. I changed the name of some of the column. When I export this list to excel, I always get the first column name, which was created by the creation of the column, and not the new one.
    Is there some possibility to export a SP list to export with the new column names?
    I'm waiting for your help,
    BR
    Damian

    Hi Damian,
    I tested in my environment, change the column name and export to excel list, the exported field name is the correct one.
    Please check the column name from somewhere else from site UI, you could check from SharePoint designer or powershell script.
    [system.reflection.assembly]::loadwithpartialname("microsoft.sharepoint")
    $site= New-Object Microsoft.SharePoint.SPSite ("http://siteurl")
    $web=$site.OpenWeb()
    $list=$web.Lists["CustomList"]
    $list.Fields |select ID, title, internalname| more
    In addition, I wonder if the issue occurs to all lists or one specific list. If the issue only occurs to one list, please try to save this list as template and create a new list based on this list and test the issue again.
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • List view sorting in Finder is sluggish, rendering it practically unuseable

    I've noticed that whenever I set a Finder window to list view and then try and sort the different columns by ascending or descending order, the sorting often doesn't work or works but only after some time, typically 15–30 seconds. This is not acceptable on a new and supposedly fast iMac, or really any Mac. I have a MacBook Air running Mavericks and the Finder is not sluggish at all on that computer. I thought maybe this was due to one of the following:
    OS X Mavericks bug (but then why don't I experience this on the MacBook Air?)
    Software conflict of some sort
    Odd preference that is buried deep in my preferences somewhere
    The maddening thing is that it does work sometimes, but other times it doesn't work and then a little while later it starts working. The unreliability is absolutely crazy making. It indicates to me some sort of software issue (either a conflict with some software that I have or an OS bug). I should mention here that I have Dropbox installed, and I saw on some other forum post that there were some Finder related issues with Dropbox, so maybe it has something to do with that (but again, the MacBook Air also has Dropbox installed and no sluggish Finder sorting there).
    Or, I noticed that the list view columns in Mavericks appears greyed out, and this was not the case with OS X Lion (my previous Mac had Lion, and the Finder sorting was rock solid). This leads me to an alternate theory that some preference somewhere is set incorrectly, but this doesn't explain the unreliability.
    I have double-checked the obvious things:
    Finder View options (I have selected Arrange by: None and Sort by: Name as the defaults for list view, as well ticked the columns to show when in list view, and yes, I'm not calculating file size)
    Power Nap is off (someone somewhere on the interwebs mentioned that Power Nap makes the Finder go to sleep and this could explain the delays in sorting)
    Has anyone else had a problem with sorting in list view? I use this quite a bit to find the most recent files in sometimes very long lists of files. It's an essential file management tool for me and I'm hoping there is a relatively easy fix.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • No list view in iPad Air calendar?

    In Calendar on the iPad Air, there doesn't seem to be any way to view all your calendar events as a chronological list of events (I.e., "list view"). Can this be true? I've been trying to find it for hours.

    Madhuri,
         I have tried the way you mentioned by using non-sap(MSSQL) bakend with ipad platform.It is working fine for me when i have tested the app in ATE.
    Once try to cross check with my procedure once.
    1.I have three objects Customer,orders,products.Orders object is collection to customer,Product Object is collection to orders.
    2.I have defined 'show order tile' screen set for order object with one detail screen that contains order id and customer id.
    3.Defined another screen set 'show order tile selected' for order object This details screen  contains all the fields in the order object.Now i have defined as mentioned by you a field with edit type as 'list view'-->check whether all the settings are done correctly in this field->height(20),collection(In my example Products),List view columns(Product Name)->that means the list view will display all the product names of the selected order object.
    4.Go to 'show customer details screen set' ,define a detail screen,add a field with edit type as 'list tile view'->set the collection to orders,list tile view settings->screensets->row ->show order tile screen set
    selected ->show order tile selected screen set
    5.Publish and test in ATE.For your understanding iam inserting the screen shot that i have done.
    Please try to map the screen sets and objects in my example.....Hope this may be a bit helpful for you.
    Regards,
    Sravanthi Polu

  • List View in iPad Platform in Agentry

    Hi,
    In EquipmentView Screen Set there is a MeasuringPointsView_iPad Detail Screen. This screen has a List Tile View. The properties for this view has Selected screen set as MeasuringPointTileSelected. I created a field of List View in MeasuringPointTileSelected_iPad screen.
    When im trying to view the screen in iPad its throwing an error: “Invalid Control Type for a list tile”. I created the same field in Windows platform screen and it was working fine.
    Can someone guide me in resolving this issue.
    Thanks

    Madhuri,
         I have tried the way you mentioned by using non-sap(MSSQL) bakend with ipad platform.It is working fine for me when i have tested the app in ATE.
    Once try to cross check with my procedure once.
    1.I have three objects Customer,orders,products.Orders object is collection to customer,Product Object is collection to orders.
    2.I have defined 'show order tile' screen set for order object with one detail screen that contains order id and customer id.
    3.Defined another screen set 'show order tile selected' for order object This details screen  contains all the fields in the order object.Now i have defined as mentioned by you a field with edit type as 'list view'-->check whether all the settings are done correctly in this field->height(20),collection(In my example Products),List view columns(Product Name)->that means the list view will display all the product names of the selected order object.
    4.Go to 'show customer details screen set' ,define a detail screen,add a field with edit type as 'list tile view'->set the collection to orders,list tile view settings->screensets->row ->show order tile screen set
    selected ->show order tile selected screen set
    5.Publish and test in ATE.For your understanding iam inserting the screen shot that i have done.
    Please try to map the screen sets and objects in my example.....Hope this may be a bit helpful for you.
    Regards,
    Sravanthi Polu

Maybe you are looking for

  • PO number from AUC to Main Asset

    Hi, Is it possible to show the PO number of AUC Asset in Main Asset to which the AUC Asset was settled. Appreciate your help. Thanks, KK

  • PO Error OPEN_FORM while processing

    Hello Experts, I am creating PO using OUTPUT TYPE "NEU" . I want to archive this po while saving. i am using SAP standard output type, print program and MEDRUCK form. but i am getting error 'Error in OPEN_FORM for document xxxx'. all the setting is d

  • Purchasing Doc. No with reference of Material Document no?

    Hello Experts,                        can you please help with the T-Code where I can find the Purchasing Document no with reference to the Material DOcument no? Thanks in advance. Regards, Yawar Khan

  • Is there a way to have PDFs save to ICloud but accessible through IBooks?

    Is there a way to have PDFs save to ICloud but accessible through IBooks?

  • Moving folders-new Mac user

    Hi all, I'm brand new to a Mac!! I have the 24" 2.66 model. Dumb question: I've downloaded some music, and saved it to the desktop. When I go to move the folder into my music section, I'm receiving an error that says "The items Ben Folds could not be