Re: "Force" a nested TextField to render container's name prefix?

2006-09-11 Thread Karthik N
Also, I'm coupling this with Tacos 4 beta 3. Can that have any bearing on how the name is being generated? I think the inference I'm coming to is that if a TextField is embedded in a custom component the text field name is not "influenced" by the name of the custom component. Could someone ple

Re: "Force" a nested TextField to render container's name prefix?

2006-09-10 Thread Karthik N
Hi, I am using 4.0.2 It shows the id of the caller component for . So id is always got from the enclosing component even though name isn't. TextField.jwc has which means that the id parameter actually gets bound to the idParameter property, and not to the id property. That's why the ids com

Re: "Force" a nested TextField to render container's name prefix?

2006-09-10 Thread andyhot
Is this for Tap4.1 ? name is a reserved parameter for TextField... there's no way to set it yourself. However, it's supposed to take its value from the id, so i would expect it to work as you describe... What's the output when CustomComponent.html is Karthik N wrote: > Hi, > > I have a scen

"Force" a nested TextField to render container's name prefix?

2006-09-10 Thread Karthik N
Hi, I have a scenario in which a custom component "wraps" a TextField component. CustomComponent.html CustomComponent.jwc textfield snippet: Page configuration of CustomComponent: i find that the underlying TextField id hon