I have a ultratabcontrol with 3 tabs. One is used to view a contract and second is used to view detail of that contract and then third is used to gain access to multiple contracts. I have a lookup txtbox to type in the contract # which opens into the first tab. A ultragrid is in middle which is clicked on to open the contract detail of contract in viewer. As long as i do not have data in the second tab I can change contract #'s and it will show correct data in first tab but as soon as data is entered in second tab and then i try to view a different contract all data pulls for first tab except the first txtbox which holds the contract number that i am looking up. When the secondary tab has data the first tab then shows the contract number found in second tab. Is this a known glitch and if so has there been a workaround. Thank you.
Hello,
It seems that your issue is related to the custom code which is responsible for filling of your data in the fields. I assume that you have subscribed for ActiveTabChanged or SelectedTabChage events and in some of this events, you have a code that fills your data. So I suggest you to review the code in this events and to see why the your text box (txtbox) is not filled correctly.
Please let me know if you have any further questions related to Infragistics Components.
Thanks for the response. I have no code in either of the events listed above. I have put a breakpoint at each instance of the textbox and while debugging I have checked to see what it is being assigned. At each time the assignment is the new contract number and the very last breakpoint with assignment for this text box has the new contract number assigned. After all breakpoints are viewed and the debug opens the interface screen the contract number that is in the textbox is the original not the new that the assignments indicated. I have nulled the second tab when repopulating the first tab and that has no effect either. I am at a loss as to where to go next. I know it would be helpful to show snippet of code but it is difficult to show what snippet to post. Thanks for your continued insight.
Hello ,
Maybe you have some binding that prevent changing the value of your text box, this binding could be set at run time or in design time, so you could check if there is any binding for this text box.
I hope that this will helps you.