Hello,
Please consider to buy a license. You use the demo script for long time.
It is a shame I think.
Kind Regards,
Hello,
Thanks for the feedback.
1. The onchange event occur when we live the input field. It is similar of pressing tab. I think that the user should know when to save filed (enter or tab) rather than to save it in all cases (which occur in onchange event).
2. Good idea, will try to implement it.
3. We will think on this too. It have sense. You can download the latest from GitHub to test the position next to the cell on validation.
Kind Regards,
Hello,
We have separated our products in different divisions – PHP and JavaScript developed and supported from gurrido.net and jqSuite for ASP.NET Webforms and jqSuite for ASP.NET MVC developed and supported from trirand .net from other side.
I think you should post your question here : http://www.trirand.net/forum/
or to the appropriate support – support at trirand dot net
Kind Regards,
Hello,
Which version is used?
Can you please send us a simple test case demostarting the problem?
Thank you.
Kind Regards,
Hello Kris,
Thank you for your recommendations and good words.
Now to the questions.
Kind Regards,
Hello Kris,
Thank you for the test case.
I was able to reproduce the problem. Actually the provided fix is not correct.
I have fixed it in appropriate way. See here.
Please let me know if the problem is fixed for you.
Kind Regards,
Hello,
Please read it carefully.
Is this one row from the response (in the example)?
If this is the case, you may need to use jsonmap property in colModel.
By example in colMode you have set name = Privateering,
but in the response, this property has a value object with another properties = StartTime End Time and etc – which one should be displayed in the grid?
Please provide two or more rows from the response as described in the documentatuion link – rows property in reader.
Regards,
Hello,
|
1 2 3 |
... $(".ui-search-toolbar","#mygrid").hide() // or show() or toggle() |
2. Unfortunately no. You can use search dialog to add unlimited fields.
Kind Regards,
Hello,
Before to make any fix, could you please send us the server response, which causes the problem or give us a link to the problem?
Thank you.
Kind Regards,
Hello,
Please remove any echo and print_r commands.
You have in the code
|
1 2 3 |
... echo $tpsDbt; ... |
Remove or comment this.
Kind Regards,
Hello,
Could you please use pure select with multiple true – i.e if you do not use any plugin for multiselect does this happen?
Kind Regards,
Hello,
Thanks for investigation.
I think that this is a partial solution. To implement more common solution we need to upercase the searched column. This way it is not needed to insert the data in the DB in uppercase format – (I refer your previous post).
Since this is a common problem we will publisha updated version which will implement some of your code and much more. You then will not need to insert data inthe DB.
We will notify you at end of this week with the updated code and instructions how to use.
Kind Regards,
Hello,
I see you go better for PHP solution way. I think your solution is fine.
Thanks for sharing
Kind Regards,
Hello,
Do you have read the article that I point you. At the end of article we have:
Starting with Firebird 2.1.2 (or earlier, at least 2.1.2 is what the Release Notes seem to tell), you can use a new Case Insensitive Collation named UNICODE_CI for the UTF8 character set (Unicode).
So when your default character set is UTF8, your table declaration might look like this:
1 CREATE TABLE PERSONS (
1 PERS_ID INTEGER NOT NULL PRIMARY KEY,
12 LAST_NAME VARCHAR(50) COLLATE UNICODE_CI,FIRST_NAME VARCHAR(50) COLLATE UNICODE_CI
1 );Your Index is a regular index declaration without any specials:
1 CREATE INDEX IDX_PERSON_LASTNAME ON PERSONS (LAST_NAME);And your search expressions need no UPPER or whatsoever:
1 SELECT * FROM PERSONS WHERE LAST_NAME = :SEARCH_STRINGThat’s it.
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top