List DropDown and Textbox Widget issue
I am giving an output of the Textbox and the Dropdown to a Service, based on the input the operations are performed in the service.
Issue:
How Can I know if there is nothing entered in the Textbox or Dropdown.
if(Textbox==="" || Dropdown === "")
{
//Do Nothing
}
else
{
//Do Operations
}
But always the it's going in to the if condition only.
How Can I check if the INPUT of the Widgets(Textbox and Dropdown) is Empty(no input given) or not

