List Lookup field length.

  • 11 February 2016
  • 3 replies
  • 4 views

Badge +3

How can i control the length of List Lookup field length?

The minimal length shown is more than what I want.


3 replies

Userlevel 7
Badge +11

Hi Amaresh,

I'm assuming you mean the List Lookup control in Nintex Forms.

The only wait I can think of doing this, is with JavaScript, finding the lookup control, getting the parent <div> and adjusting the Width property.

Vadim

Badge +9

see Nintex Forms 2013 - minimal width of list lookup control too big - what to do

Badge +4

Use this to change the width of lookp control: 

NWF$("#" + ID)[0].style.width ="100px"

 

ID is the control's Javascript id 

Reply