This topic is locked

How to change appearance of 'Add new' button next to lookup wizard

7/29/2019 11:33:34 PM
PHPRunner Tips and Tricks
Sergey Kornilov admin

This article applies to ASPRunner.NET, PHPRunner and ASPRunnerPro.
To change the appearance of 'Add new' link next to dropdown box add the following code to Javascript OnLoad event of Add/Edit pages:

$("a[id^=addnew_value]").text('Add some more');
$("a[id^=addnew_value]").css('color','green');


Here is how it is going to look in the generated application:

T
Tayyab Ilyas 7/31/2019

How can we move it above, in the same row/line of the field?

There must be some <BR> code where can we remove that?