Hello,
Thank you for clarification. Right now I understand the problem. We will try to fix this ASAP.
I will let you know.
Kind Regards,
Hello Thomas,
I’m not sure that I understand the question.
Scrolling should work, when frozen columns are enabled.
Could you please post your code or send us a link to the problem (pastebin or similar) where this happen?
For us it is not possible to help, the way you describe the problem.
Thank you.
Kind Regards,
Hello Matt,
The fadeOut closes the dialog, but does not close the overlay.
The correct way to close the info_dialog is to trigger the close button, so that it is closed correctly.
The appropriate code should be like this:
|
1 2 3 4 5 6 7 8 9 10 11 |
afterSubmit: function(resp, postdata) { if (resp.status === 200) { jQuery.jgrid.info_dialog("Info","<div class=\"ui-state-highlight\" style=\"padding:5px;\">"+resp.responseText+"</div>", jQuery.jgrid.edit.bClose,{buttonalign:"right"}); setTimeout(function() { jQuery("#info_id").find("#closedialog").trigger("click"); }, 3000); return [true, ""]; } }, |
Since I do not tested this, please let us know if this work as expected.
Thank you.
Kind Regards,
Hello Fcstefoy,
Thank you very much for this question.
This is possible. The technique is similar as in jqGrid.
Since this is a very interesting feature our technical team will prepare a example of integration with Tynymce.
You will be notified about this at end of this day.
Kind Regards,
Hello,
As of the new version 4.8 we support serching in TreeGrid.
We have prepared a example which demonstrates this feature.
Please look at this TreeGrid Search example
Kind Regards,
Hello,
Please look at this autocomplete demo.
Look at the JavaScript code.
Please let me know if you have problems with the implementation.
Kind Regards,
Hello,
I will prepare a example.
Kind Regards,
Hello,
Thanks for remind. We have started the rewriting of documentation. You know that this is not a quick job. We rewrite the docs not only for the PHP component, but for JavaScript too.
I hope it will be available soon.
As for jqChart – the existing users are and is supported with the last available downloaded version from Trirand no matter if the subscription is expired.
We have not negotiate with Higchcrats and we consider to replace this component with another one.
Hello Ken,
The structure of longorders is the same as orders, and it is difficult to provide a million data in the download. This will be really big. We have corrected the download file, but the number of records is truncated.
Kind Regards,
Hello,
Please post new questions on new posts.
Regards,
Hello,
This is true. delData can not be a function.
You have another possibilities to expend the parameters dynamically passed to delete operation..
I recommend you to look at serializeDelData and onclickSubmit, but are functions and extend the posted data when deleting.
You may look here: look at delete opeartion events.
Kind Regards,
Hello,
Glad to help.
Kind Regards,
Hello,
The problem (error) you have is that you pass 3 parameter , but you set two in the Sql command
Here is what you do:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
$_SESSION['krish']="114,16,17"; session_start(); if(isset($_SESSION['krish'])) { $kk = $_SESSION['krish']; } $temp = explode(",",$kk); for($i=0;$i<2;$i++) { $params[$i]=$temp[$i]; } ... $sql='SELECT CONCAT ... ... WHERE issues.productid in ( ? , ? ' . ')'; ... $grid->setColModel(null,$params); ... $grid->renderGrid('#grid','#pager',true, null, $params, true,true); |
I think that you must look carfully how you pass parameters.
Actually we pass parameters in a way that PDO driver do.
I recommend you to search on how to pass a parameters in in IN WHERE clause.
Succes.
Kind Regards,
Hello,
As far as I understand you have set the grid height, but your records does not fit to the end othe hight which causes this.
Solutions
1. Set your height a little bit little or put more reccords using the rowNum parameter.
2. Set the height to 100% or auto
3. Set the grid option scrollOffset to 0. This parameter causes the gap, but this will make the grid look not good if you later have more records to display on it.
Check these 3 and you will find your best solution.
Kind Regards,
Hello,
Can you please post your code?
Please in the future do this, since we can not determine where the problem is.
I hope you understand – this will save your and our time.
Kind Regards,
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top