![]() |
Sergey Kornilov admin 4/13/2011 |
David, |
D
|
david.fms author 4/14/2011 |
Good inspiration. Thanks!!! |
D
|
david.fms author 4/14/2011 |
I read and I applied the suggestions but what it does is change the size of the field. My intention is that the user can type more characters in the search popup with AJAX (50 or more). Is it possible? Greetings and thanks again. |
J
|
Jane 4/14/2011 |
Hi, |
D
|
david.fms author 4/15/2011 |
OK ... And I extended the popup ... Now, how I can write more characters?. The example is "ConsellerÃa de Presidencia e Administración Públic" and I want to see "ConsellerÃa de Presidencia e Administración Pública e Xustiza" |
![]() |
Sergey Kornilov admin 4/15/2011 |
Here is how you can do this. $str = substr($value,0,50);
echo "<b>".(substr($value,0,strlen($searchFor)))."</b>".(substr($value,strlen($searchFor),50-strlen($searchFor)))."\n";
|
D
|
david.fms author 4/18/2011 |
Works! Thanks! |