+ Reply to Thread
Results 1 to 6 of 6

Thread: Keyword search using IE8

  1. #1
    Senior Member
    Join Date
    Dec 2011
    Posts
    159

    Keyword search using IE8

    Anyone face problem when using keyword search with IE8?

    It is not able to display correctly as the keyword highlight the URL

  2. #2
    Hello Desmond Lim,

    Yes I found this error

    Please go to ftp:libs>>javascript>>flynax.lib.js

    find method with name highlightSRGrid at line ~841 and in this method find code:

    Code:
    Only registered members can view the code.
    and replace to :

    Code:
    Only registered members can view the code.
    Last edited by Viktor; May 28, 2012 at 12:13 PM.
    Viktor,
    Flynax technical department,
    Best wishes.

  3. #3
    Senior Member
    Join Date
    Dec 2011
    Posts
    159
    thanks got it resolved

  4. #4
    Senior Member
    Join Date
    Dec 2011
    Posts
    159
    I thought this seem to work until i found out that now that all the text links are not clickable

  5. #5
    Senior Member
    Join Date
    Dec 2011
    Posts
    159
    If you scroll further down, there is ...

    Please advise if this need to edit as well?

    ================================================== =====================================




    $('table.listing_details td.details table.table td.value').each(function(){
    var value = trim($(this).html());
    var href = false;
    if ( value.indexOf('<a') >= 0 )
    {
    var matches = value.match(link_pattern);
    if ( matches[2] )
    {
    value = trim(matches[2]);
    href = matches[1];
    }
    }
    value = value.replace(pattern, '<span class="ks_highlight">$1</span>');
    value = href ? '<a '+href+'>'+value+'</a>' : value;
    $(this).html(value);
    });

  6. #6
    Flynax developer John's Avatar
    Join Date
    Oct 2009
    Posts
    606
    Hello guys,
    Here the updated highlightSRGrid javascript function code:
    Code:
    Only registered members can view the code.
    Also this fix has been applied to Flynax 4.1 version.

    John

+ Reply to Thread