Forum Post: RE: Lookup Selector Style Configuration

  • Thread starter Thread starter sapatel
  • Start date Start date
Status
Not open for further replies.
S

sapatel

Guest
I might have a possible solution for you. Add the following code to your Application's Footer; Goto Applications Setup Applications Particular application More Actions Drop down Header and Footer Add it to the footer script $('input[ismultiple][ismultiple=false]').each(function() { var mId = this.id.split('txt')[1]; var myDiv = $('div[id=rtable_' + mId + ']'); myDiv.css('position','relative'); myDiv.css('top','-29px'); }); /script Explanation : ismultiple would take care of doing this for only one-2-one relationships. Also takes care of instances where one has changed the integration names for the lookup fields involved. P.S: Adjust actual CSS as required. Current one just positions it inside the Input field. Regards, Santosh

Continue reading...
 
Status
Not open for further replies.
Back
Top