This topic is locked

Size Advanced Search Field

5/16/2012 10:42:17 PM
PHPRunner General questions
O
onlline author

Hi
Changing the size, Search Field?

I looked in the forum tried to messmo Css nothing works
help me

Sergey Kornilov admin 5/16/2012
O
onlline author 5/17/2012



Check this article for inspiration:

http://xlinesoft.com/phprunner/docs/change_width_of_text_field_on_quick_search_pane.htm


Hi thanks in advance
did not work in PHPRunner 5.3 Build 7474
I can put more than one field
street

name

phone

state

C
cgphp 5/17/2012

That js code works fine. Make sure to replace "Make" with the name of your field. If your field name is "amigos", you have to update js code as follow:

$.each($("input,select"),function(i,e){

var field="value_amigos";

if (e.name.substring(0, field.length) == field)

{

$(this).width(150);

return false;

}

});