Skip to main content

jqGrid highlight the new added row


Is that possible to highlight the new added row in jqGrid. The highlight effect is something like this http://docs.jquery.com/UI/Effects/Highlight



So, when the new row is added, the row will be highlighted, that will make clear for user which record is the new one.



Many thanks!


Source: Tips4allCCNA FINAL EXAM

Comments

  1. Yes, I have used the following to briefly highlight a newly-added row. It produces a nice effect to let the user know there is new data, and sounds just like what you are looking for:

    jQuery("#" + rowId, "#myGrid").effect("highlight", {}, 2000);

    ReplyDelete
  2. If I understand you correct you want highlight a row added with respect of form editing ("+" in the navigation bar). Form editing supports an event afterComplete, which you can use to add some post-edditing features. For example, if you want to have the highlight effect with all rows added, then you can use general setting for jQuery.jgrid.edit:

    jQuery.extend(jQuery.jgrid.edit, {
    reloadAfterSubmit: false,
    afterComplete : function (response, postdata, formid) {
    if (postdata.oper === "add") { // highlight on "add" only
    var row = jQuery ("#"+$.jgrid.jqID(postdata.id), jQuery(this.gbox));
    row.effect("highlight", {color:"red"}, 3000);
    }
    }
    });


    If you will be use row.effect("highlight", {}, 3000); (no red color), you will see highlight effect, but a little not so clear, because added row will be selected per default.

    You can of cause modify the code to use highlighting only for one selected grid.

    ReplyDelete
  3. What information do you allready have about the row.

    Do you have the row id? Or the value of the field that is marked as the key?

    It creates the row as defined like this. Notice that the id of the row is the same as the key value.

    <TR id=11 class="ui-widget-content jqgrow ui-row-ltr ui-state-highlight" role=row aria-selected=true><TD title=11 role=gridcell aria-describedby=list2_id>11</TD><TD title=2007-10-06 role=gridcell aria-describedby=list2_invdate>2007-10-06</TD><TD title="Client 1" role=gridcell aria-describedby=list2_name>Client 1</TD><TD style="TEXT-ALIGN: right" title=600.00 role=gridcell aria-describedby=list2_amount>600.00</TD><TD style="TEXT-ALIGN: right" title=120.00 role=gridcell aria-describedby=list2_tax>120.00</TD><TD style="TEXT-ALIGN: right" title=720.00 role=gridcell aria-describedby=list2_total>720.00</TD><TD title="" role=gridcell aria-describedby=list2_note>&nbsp;</TD></TR>


    So then you could just do.

    $("#tblselector).find("#+KeyValue").addClass("ui-state-highlight")


    It realy depends on how the row is being added.
    You could use the afterInsertRow event but this would fire for each row as it is added to the grid. In addition there is this note on the event.


    Note: this event does not fire if
    gridview option is set to true


    I do not suggest changing the gridview option to false if you are returning a lot of rows and or columns as it will have a big performance impact.

    I would have asked for clarification on how the row is being added but dont have enough points for comments.

    ReplyDelete

Post a Comment

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex