I am using module=textfield in formsearch. I lookslike text box is smaller to enter full our search string. How do I increase the textbox size when used module=textfield .I tried giving width=100 but didnot helped.
is there any way we can increase the size to textbox?
Here is code in XML.
<module name="Message" layoutPanel="messaging">
<param name="filter">*</param>
<param name="clearOnJobDispatch">False</param>
<param name="maxSize">2</param>
</module>
<module name="TitleBar" layoutPanel="navigationHeader">
<param name="actionsMenuFilter">dashboard</param>
<!-- <param name="showActionsMenu">False</param> -->
</module>
this has fixed after changing the code as below
<module name="TextField" >
<param name="name">user</param>
<param name="label">Enter UserID</param>
<param name="template">user="$value$"</param>
<param name="float">left</param>
<param name="default">0</param>
<param name="width">70%</param>
this has fixed after changing the code as below
<module name="TextField" >
<param name="name">user</param>
<param name="label">Enter UserID</param>
<param name="template">user="$value$"</param>
<param name="float">left</param>
<param name="default">0</param>
<param name="width">70%</param>
is this answer in some code word?
Hi @nabeel652
The post wasn't properly formatted. I just edited it to render the code properly. Do keep in mind though that this post is almost 4 years old and the solution might not be relevant to more current Splunk versions