Currently, I am utilizing the Infragistics component set for .Net 2.0 in Visual Studio 2005 with C#. Below is a snippet of javascript code (variable declarations are located elsewhere):
***alert(box[select].value);
text.value(box[select].value);
alert(text.value);***
'text' refers to an Infragistics webTextEdit, while 'box' represents a standard listbox. The alerts appear to be functioning correctly. Prior to setting the value, the selected value of the listBox may be 'hello', and after assigning this value to 'text', the alert box also displays 'hello'.
Despite this, the displayed value in the form's box does not seem to update. Can anyone provide suggestions on potential mistakes or quirks related to how Infragistics manages this issue? It is acknowledged that the details provided may insufficient for problem diagnosis.