Hello,
We have answered to you.
Below is is the answer. (Please check your spam mailbox)
==============================================================
Hello,
Thank you for purchasing our products.
As I see you have do a Bank Transfer.
In this case there are some days (typically 2-3)until the payment reaches our payment provider.
After this is done you will receive immediate the license.
If this is a show stopper, you can redownload our demo and replace the php files only.
This will extend the period for anther 30 days.
Please let us know if you have any other questions.
Kind Regards
Julia
Guriddo Sales Team
On 2015-09-07 10:36, Segreteria ESACON wrote:
Please check the payment made for the license of jqGrid for php (Order……………). Today we get”script expired”, so please send the unlocked library. Thank you
Guriddo Support Team
Hello,
Could you please read this forum post and let us know if this is a working solution.
Kind Regards,
Will
Guriddo Support Team
Hello,
To post a code, please switch in text mode – the tab on upper left corner of the editor. After this a code tag will appear – mark the text and click on this button.
Now on the problem – Until today this was not possible.
We have added a option restoreCellonFail which is default true. To stay in edit mode after error set this grid parameter to false. Here is the change in github
To use the code download the last build from git and try.
Please let us know if everything is ok.
Kind Regards,
Will
Guriddo Support Team
Hello,
What is the error?
Do you have replaced all the files – javascript css, html and etc from the version 5?
Regards,
Will
Guriddo Support Team
Hello,
The Scheduler can work with SQL Server.
We have generated a sql file for this purpose. Please look in the backend directory of the Scheduler php files. there is a file named db_sqlsrv.sql.
We have not updated the mysql file, sorry. It will be fixed.
Please do not forget to replace all the files (JavaScript, PHP and CSS ) from the new release (especially the backend directory)
Please let us know about the solution.
Kind Regards,
Will
Guriddo Support Team
Hello,
The idea is to compare the value sv with those from the response.
This mean you get a value sv from the grid
|
1 2 |
... sv = jQuery("#test1").jqGrid('getCell',sr,'code1'); |
and then you have this:
|
1 2 3 4 |
jQuery.each(response, function(i,item) { t += "<option value='"+item.id+"'>"+item.value+"</option>"; }); |
The question is: Is the value sv contained in the string with
Look especially in the item.id, sinsce to select the value the following condition must be meeted
sv should be in the options value which are filled with item.id (if I understand the question correct)
By the way could you please prepare a some test data for the table and data from the json response?
Thank you
Kind Regards,
Guriddo Support Team
Hello,
For me the problem is in the building the select.
In your code you have:
|
1 2 3 |
jQuery.each(response, function(i,item) { t += ""+item.value+""; }); |
IMHO it should be:
|
1 2 3 |
jQuery.each(response, function(i,item) { t += "<option value='"+item.id+"'>"+item.value+"</option>"; }); |
Kind Regards,
Will
Guriddo Support Team
Hello,
With this way of communication nobody can help you.
Please, post a full example with data in order to see the problem – only this way we can see what is happen
Regards,
Will
Guriddo Support Team
Hello,
You have forgot to add the correct id when you build the grids.
Replace
|
1 2 3 4 5 6 7 |
function init(v) { var id="#marsLandingPageGrid"; var landingPageGrid = $(id); .. |
with this
|
1 2 3 4 5 |
function init(v) { var id="#marsLandingPageGrid"+v; var landingPageGrid = $(id); ... |
Note the +v
Kind Regards,
Will
Guriddo Support Team
Hello,
When searching in tree we return the the full tree node which contain black.
This is standard in tree searching.
See another such components to see it in action
Kind Regards,
Will
Guriddo Support Team
Hello,
Unfortunately we do not support this feature. we will try to add this in the next releases. Note that this first will be available in Guriddo PHP.
Kind Regards,
Will
Guriddo Support Team
Hello,
I’m not sure that this feature will be available in the upcoming release.
It require a lot of efforts and testing.
Kind Regards,
Will
Guriddo Support Team
Hello,
You can controll theĀ text of the error, but not the display name field.
Here is the static array:
|
1 2 3 4 5 6 7 8 |
public static $errors_msg = array( "notdef" => ": is not defined in the post!", "notvalid"=> "is not valid!", "required"=>" field is required!", "min" => "value must be greater than or equal to ", "max"=>"value must be less than or equal to", "notype"=>"Unknown type" ); |
This is a good feature for the upcoming release we will add this request.
The field name will be maybe set in validation array like this
|
1 2 3 4 5 |
$validations = array( 'vc_comments' => array("text"=>true, "required"=>true, "errorText" => "Comments"), ... |
Kind Regards
Will
Guriddo Support Team
Hello,
Thank you for the recommendation. We will put this in our todo list.
Kind Regards,
Will
Guriddo Support Team
Hello,
In form editing unfortunately this is not possible. You can use a inline edit to do this.
The example that is close to this requirement is here
Kind Regards,
Will
Guriddo Support Team
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top