guriddo.support

Forum Replies Created

Viewing 15 replies - 271 through 285 (of 1,092 total)
  • Author
    Replies
  • in reply to: Export to Excel Rounding Values Again #127062
    guriddo.support
    Participant

    Hello,

     

    Since this is urgently you can make quick fix if you set excelParser to empty array.

    After loading the jqGrid file do

     

     

    Kind Regards
    Will

    Guriddo Support Team

    in reply to: inline editing with Boolean objects #127059
    guriddo.support
    Participant

    Hello,

     

    If you use custom formatter, then maybe you may need to use a unformat function too. See the docs here

     

    Kind Regards,

    Will

    Guriddo Support Team

    in reply to: inline add #127057
    guriddo.support
    Participant

    Hello,
     
    Direct no, but you can use footerrow to place with custom code the input elements and prepare a button for saving the data
     
    Hint: You can easy add any content in footer row using the footerData method with set parameter and the third parameter (format) set to false.
     
    Eaxmple.
     
    To set a input element in footer field ProductName do
     

     
    Kind Regards,
    Will

    Guriddo Support Team

    in reply to: paging/infinite scroll #127056
    guriddo.support
    Participant

    Hello,

    Unfortunately it is very difficult to make this. When click on next page it is ok, but the problem will be with the previous page clicking.

    Anyway we will look into this and see if we can do something.

    Kind Regards,
    WIll

    Guriddo Support Team

    in reply to: Export to Excel Rounding Values Again #127053
    guriddo.support
    Participant

    Hello,

    Thanks. We noticed this bug and we work on it fixing. We will notify you when we are ready with this.

    Kind Regards,
    Will

    Guriddo Support Team

    in reply to: Dropdown with filter #127048
    guriddo.support
    Participant

    Hello,

     

    As far as I understand the problem you can use dataUrl option as function. In this case you can get the value from the other cell and pass it as parameter to the datUrl.

     

    Here is a demo of this

    Look at file detail.php. The related code is like this:

     

     

    The select.php look like this:

     

     

    Please let us know if this solves your problem.
     
    Kind Regards,
    Will

    Guriddo Support Team

    in reply to: inline editing with Boolean objects #127045
    guriddo.support
    Participant

    Hello,

     

    What you mean with “But it is passing default value of Boolean type(in Java) …”

     

     

    I’m not sure that I understand the question. You set Yes/No value for bollean and this values is end to the server. Did you mean true/false?

     

     

    Can you please be a more detailed?

     

    Thank you

     

    Kind Regards,

    Will

    Guriddo Support Team

    in reply to: Export to excel and others #127040
    guriddo.support
    Participant

    Hello,

     

    Thank you very much for the valued recommendations.

     

    – Indicators (loading box) for all exports will be prepared for the next release

    – In the current release the Dollar sign is hardcoded and it is not so easy to change. Custom formatting strings for excel export will be implemented in the next release too.

    – About editing cells. If you do not know when the value in cell editing is changed we add a class dirty-cell. You can use this class to indicate that the value in cell is changed. This is described here

    Usually we user this definition

     

     

    which adds a red triangle in the upper right corner.
     

    – We will try to make this autofilter for the next release.
     
     

    I all cases we will let you know when some things are done, so that you can see if they meet your requierments.
     
    Thank you very much
     
    Kind REgards
    Will

    Guriddo Support Team

    in reply to: Pager Not Properly Centered on Grid #127038
    guriddo.support
    Participant

    Hello,
     
    autowidth should not do any problem.
     
    For me the problem my be in this code:
     

     

    the first if
     

     
    is equivalent to:
     
    loadonce : true
     
    in grid settings.
     
    My question is what do maximizeTable() and why do you resize the grid
    Can you please revise what this function do? If you remove these two lines of code
     

     
    does the problem exist?

    Kind Regards,
    Will

    Guriddo Support Team

    in reply to: Pager Not Properly Centered on Grid #127035
    guriddo.support
    Participant

    Hello,

     

    It is very strange that the grid break the html content with grouping and it work fine without grouping – this is the reason that I have look deeper in your grouping settings and it seems you have incorrect written open and a close tag for the bold command here:

    <b>{fraudCount}<b>

     

    I think the problem is in this line:

     

     
    fix it with the following
     

    and let us know if this fixes the problem

     
    Kind Regards,
    Will

    Guriddo Support Team

    in reply to: Export Excel Null Date Become 1970-01-01 #127034
    guriddo.support
    Participant

    Hello,

     

    Actually this is a good recommendation. We have fixed the problem adding new option in the excel settings. Please write to support e-mail in order to send you a fix and instructions.

     

    Kind Regards,

    Will

    Guriddo Support Team

    in reply to: Regarding Accessibility feature in JQGrid #127024
    guriddo.support
    Participant

    Hello Meenakshi,

     

    We hope to be ready with the beta at end of February 2019. I all cases we will let you know, since we need your opinion, experience and  testing. I hope you will participate on this.

     

    Kind Regards,

    Will

    Guriddo Support Team

    in reply to: Filter the editable value before submit to server #127014
    guriddo.support
    Participant

    Hello,

     

    There is a such event(s)

     

    Depending on the editing module used you can use

    serializeCellData – the event is defined as grid option for cell editing module

     

    serializeRowData – the event is passed as param in editRow, saveRow function for inline editing

    serializeEditData – the event is passed in navigator edit/add options , editRowdata method for form editing module

     

    To all events is passes the data parameter, which is object wioth the posted data. You can analyze the fields and should return the object Example:

     

     
    Hope this helps. You can read the docs here
     
    Just for your information if this is only the case we have a build in options to send nulls when the posted elements are empty string. The parameter is named : NullIfEmpty see the docs for it.
     
    Kind Regards,
    Will

    Guriddo Support Team

    in reply to: Regarding Accessibility feature in JQGrid #127010
    guriddo.support
    Participant

    Hello Meenakshi,

     

    Thank you for the recommendations. We discussed in our team these requirements and we have made a decision to implement it in our next release which  is expecting March 2019.

     

    We will let you know when we have a beta and maybe need your testing and new recommendations, since we do not have much experience in this direction

    Thank you in advance

     

    Kind Regards,

    Will

    Guriddo Support Team

    in reply to: Grouping Data questions #126995
    guriddo.support
    Participant

    Hello,

     

    cellattr should not be a problem. We have prepared similar example and it works. See here

     

    The problem is maybe in another part of the code. Try to use no grouping, but with cellattr function.

     

    Kind Regards,

    Will

    Guriddo Support Team

Viewing 15 replies - 271 through 285 (of 1,092 total)

Stay connected with us in your favorite flavor!