guriddo.support

Forum Replies Created

Viewing 15 replies - 286 through 300 (of 1,092 total)
  • Author
    Replies
  • guriddo.support
    Participant

    Hello,

    Thanks for asking this.

    Unfortunately this feature is not available in the last release. We have added it in our todo list for the next release.

     

    Kind Regards

    Will

    Guriddo Support Team

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

    Hello,

     

    About 1. Can you please post the grid setup and some simple data or send a demo link or demo files to the support?

     

    About 2. It depend how you want to process.

    a) In case if you want to add the same color of all first level grouping you can:

     

    where jqGrid word in the classname is the id of the grid.

    for the second level the generated class is jqGridghead_1 and etc.

     

    b) If you want to do this dynamically depending a value one possible solution is to get the grouping names and add the appropriate classes in loadComplete by example.
     

     

    and then define a style like:
     

    Kind Regards,
    Will

    Guriddo Support Team

    in reply to: Capture Error Event #126987
    guriddo.support
    Participant

    Hello,

    There are two types of such server errors – the errors when the data fails to loads into the grid and the errors when something happens when editing. These events replace the jQuery ajax error

     

    The first error can be customized by you using the loadError event:

     

    More about the jqGrid events you can read here

     

    The second type of such error depend on the editing module used. More about these events can be read here in the appropriate module events.
     
    Please let us know if you need more help on this.
     
    Kind Regards,
    Will

    Guriddo Support Team

    in reply to: Default Selections in Toolbar Search #126972
    guriddo.support
    Participant

    Hello Tom,

     

    You can use the defaultValue option in serchoptions and then apply your approach.

     

     

    Documentation for searchoptions is here
     
    and then you can apply your approach.
     
    Here is a demo in PHP

     
    Kind Regards,
    Will

    Guriddo Support Team

    guriddo.support
    Participant

    Hello,
     
    -The degree symbol can be exported if you copy and paste it in your colModel label property. The html tags for degree in pdf does not work. See the demo link below.
     
    -it is not possible programmatically to repeat the header table in excel. You may want to look at this solution here: https://support.office.com/en-us/article/repeat-specific-rows-or-columns-on-every-printed-page-0d6dac43-7ee7-4f34-8b08-ffcc8b022409
     
    -by defaultĀ  a single header is printed repeated in pdf. In your case toprint the multiple headers you will need to use onBeforeExport event in pdf export I recommend you again with google seerch to use the docs – this some times saves a time and effort. See the example below: http://www.guriddo.net/demo/guriddojs/export/headerpdf/

     

     

    Kind Regards

    Will

     

    Guriddo Support Team

    in reply to: JQgrid move to Bootstrap #126965
    guriddo.support
    Participant

    Hello,

    To contact us through our helpdesk, just send an email to
    support@guriddo.net

    Guriddo Support Team

    in reply to: JQgrid move to Bootstrap #126962
    guriddo.support
    Participant

    Hello,

     

    Could you please send us a working demo, which demonstrates the problem or show us a on-line example using some public sites like jsfiddle.net

     

    Thank you

     

    Kind Regards,

    Will

    Guriddo Support Team

    in reply to: actions button #126961
    guriddo.support
    Participant

    Hello,

     

    The option which pace the action buttons is response: true

    See docs here

    On tab when used the grid has initial width zero, which make the grid not to display because of autowidth (since the parent element has 0 pixel width and hence the grid has same width)

     

    KInd Regards,

    Will

    Guriddo Support Team

    in reply to: Jqgrid upload image not passing data object to database #126955
    guriddo.support
    Participant

    Hello,

     

    Thank you for the response.

     

    I think that the problems you have are related to server side code.

     

    Unfortunately we are not familiar with ASP.NET MVC related code.

     

    Kind Regards,

    Will

    Guriddo Support Team

    in reply to: Jqgrid upload image not passing data object to database #126951
    guriddo.support
    Participant

    Hello,

     

    I ask for the vesion, since the ajaxFileUpload plugin you used is not compatible with jQWuery version used – 3.3.1 – see here

     

    Note that in the link there is a working version with jQuery 2.x, but not with jQuery 3.3.1.

     

    We have fix the ajaxFileUpload plugin to work with jQuery 3.3.1.

     

    Below example which work with Guriddo jqGrid.

     

    In all cases it is recommended to use another plugin.

     

    Our note is that you need first to test the upload plugin used to work alone and then apply it to jqGrid.

     

    Kind Regards,

    Will

    Guriddo Support Team

    in reply to: drag drop multiple rows #126949
    guriddo.support
    Participant

    Hello,

     

    I’m not sure that you need drag and drop in this case to move the columns from one grid to another.

     

    To do this it is a simple solution – add mutiselect option in the grid and then define a button which on click should do the following:

    1.Check to see if in the source grid there are selected rows. If there are such one, get the id of the selected rows (use getGridParam and selarrrow parameter)

    2. using getRowData get the data of the selected row(s)

    3. Insert the data of the selected row(s) using addRowData int the target grid

    4. Delete the selected row(s) from the source grid

     

    Simple and useful.

     

    Kind Regards,

    Will

    Guriddo Support Team

    in reply to: Jqgrid upload image not passing data object to database #126947
    guriddo.support
    Participant

    Hello,

    Before to try to solve the problem, we would like to know

    1. The version of Guriddo jqGrid used
    2. The version of jQuery used
    3. The version of ajaxFileUplod plugin used

    Kind Regards,
    Will

    Guriddo Support Team

    in reply to: export to excel #126943
    guriddo.support
    Participant

    Hello Gordon,
     
    First of all I apologize for my mistake and that I have missed a existing feature in the Guriddo Suito PHP.
     
    Using the existing code you can do this very easy without to modify the source code.
     
    Here is how you can achieve this.
     
    There is a option called excelFunc, which you can call before rendering the grid. Here is the code:
     

     
    Again sorry for my oversight.
     
     

    If you have any problem with this, please let me know.
     

    Kind Regards
    Will

    Guriddo Support Team

    in reply to: Hide password #126942
    guriddo.support
    Participant

    Hello,

     

    From what I understand I do not recommend you to transfer a passwords as texts over the networ. It is very dangerous and your application canĀ  be accessed from anyone.

     

    The password in this case can be seen in the ajax response and any people that can open the console can see the passwords.

     

    There is no sense to do this. Instead f this you can do this using a custom formatter, where you can read the the passord put **** in the cell and store the text in separate span tag. In case of reading you should define your custom unformat functionto get the text and put it in your password field. Something like this

     

     

     

    Kind Regards,
    Will

    Guriddo Support Team

    in reply to: Hide password #126938
    guriddo.support
    Participant

    Hello,

     

    Could you please describe the question more detailed?

     

    Did you mean that your data contain sensitive information like password and this data should be displayed into the grid by example like **** and when edit it it should be the same way *****?

     

    Is the password field encoded with some algorithm or it is a text which can be read from everyone?

     

    Kind Regards,

    Will

    Guriddo Support Team

Viewing 15 replies - 286 through 300 (of 1,092 total)

Stay connected with us in your favorite flavor!