Hello,
Just for the test – IF you set these options explicit to true does this work – i.e:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
$(‘#grid_0’).jqGrid(‘navGrid’, ‘#grid_0_pager’, // pager { add: false, edit: false, del: false, search: true, refresh : true }, {}, {}, {}, { multipleSearch: true, sopt: [‘eq’, ‘ne’, ‘cn’, ‘nc’, ‘bw’, ‘ew’], defaultSearch: ‘cn’ }, { closeOnEscape: true } ).trigger(“reloadGrid”); |
Like in the example
Regards
Will
Guriddo Support Team
Hello,
Currently we work on this.
Kind Regards,
Will
Guriddo Support Team
Hello,
By default all buttons in navigator are enabled. With the settings you posted they should apper.
The only way to help is the send us a WORKING code which demonstrates the problem or send us a link to the problem. In case of the second you can use the e-mail: support at guriddo dot net.
Kind Regards,
Will
Guriddo Support Team
Hello,
Could you please try for the two textarea fields to set two setTimeouts something like this:
|
1 2 3 4 5 6 7 8 |
$javascriptnewForm_c = <<< JSCFORM_C setTimeout( function() { // here the first field as per my first post }, 300); setTimeout( function() { // here the second field as per my first post }, 600); JSCFORM_C; |
Kind Regards
Will
Guriddo Support Team
Hello,
Sorry for delay on the answer.
Nothing special. Using the two demos with tinymce and sql data we combine into one which can be seen here
Kind Regards,
Will
Guriddo Support Team
Hello,
Sure there is a such function(s).
Please look at this document
Kind Regards,
Will
Guriddo Support Team
Hello,
Thank you for posting this problem.
The bug is in… documentation.
The event is not a part of editRow option, but it is a grid option.
With other words in order this to work the event should be defined as grid option.
Sorry for this inconvenience,
We will fix the docs ASAP.
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
Sorry for the delay in replay.
The export when executed should process all the local data. We have check the code..
Could you please prepare a demo for this problem?
Thank you
Guriddo Support Team
Hello,
We expect this feature to be available at end of October, 2017. We will notify you.
Thank you
Kind Regards
Will
Guriddo Support Team
Hello,
At the moment there is no build in way. We will try in the next week to create a method exporting the data to html, where after that will be possible to print the table.
We will notify you when it will be available.
Kind Regard
Will
Guriddo Support Team
Hello,
I can suggest you one possible solution. For this purpose you will need to use the option scrollrows set to true. See here
1 . Create global (or visible inside the scope) variable let say lastselection.
2 . In second grid set the grid option scrollrows to true
3. When the user select a row in second grid set variable lastselection to that row
4. After the reloading of grid 2 with trigger(‘reloadGrid’) do
|
1 2 3 4 5 6 |
$("#grid2").trigger('reloadGrid'); setTimeout(function() { if( lastselection ) { $("#grid2").jqGrid('setSelection', lastselection); } }, 500); |
In this case the grid will scroll to the selected row.
Kind Regards,
Will
Guriddo Support Team
Hello,
Generally no, but can you please give us more detail on jqGrid setup? The question is too common.
Kind Regards,
Will
Guriddo Support Team
Hello,
The schedule for the new release is planed for end of November.
Kind Regards,
Will
Guriddo Support Team
Hello,
Sorry for delay. Thanks for the example.
By default sorting and searching are done by index property in colModel. To resolve fully this situation is is needed to define additional properties like sortname and searchname in colModel, but I agree, that in case of local searching and sorting search and sort should be by name which is defined in the data. We will try to resolve this conflict in the next release.
Thank you!
Kind Regards,
Will
Guriddo Support Team
Thanks,
We have fixed the issue
Note that when you manually call editCell you will need to pass the event object as 4 parameter in order to use it in onCellSelect
Kind Regards,
Will
Guriddo Support Team
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top