Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
172 views

JSF NamingContainer and UIForm with prependId

I have a question about the idea behind the fact, that only UIForm got the attribute prependId. Why is the attribute not specified in the NamingContainer interface? You will now probably say that's ...
2
votes
2answers
1k views

Jsf How to create a Naming Container

I have a problem with duplicated ids in my JSF app. I've read in this post that one of the possible solutions is to use Naming Container. Can you give me some example how to use the Naming Container ...
2
votes
5answers
3k views

ASP.NET DataSource Control “does not have a naming container” exception

I've been getting this exception in my code and wondered if anyone could help me out. I have a Repeater Control bound to an ObjectDataSource, and the itemtemplate for the repeater contains a User ...
1
vote
1answer
57 views

How create a composite component that isn't a NamingContainer

I've create a composite component to substitute primefaces popup in my project. I've found something really bad in the generated html, an strange id appears and I can't find where this id is ...
1
vote
1answer
254 views

JSTL, composite, NamingContainer and prependId

I have written a composite component and want to use the reserved EL #{component.clientId} to make a JQuery bind. To use this retrieved clientId in a another place in the page (outside the component), ...
1
vote
3answers
468 views

Resolving viewstate/namespace conflicts

I have a listbox control. When the user clicks it, it tells a custom control to use a certain ID to use. The custom control draws the same thing everytime(dynamically), just loads different content ...
1
vote
1answer
145 views

Naming container not getting “set” in extenders

I think I might know the cause, but not how to fix it without a lot of code rewriting(which I prefer to avoid). I have public class datecontrol : basecontrol { private ImageButton _ImageButton; ...
0
votes
1answer
23 views

Reference an id in the for-Attribute of p:radioButton

Is it possible to reference an id, that identifies a component that is a child of the parents-parent-naming container? For example: <div class="browserDiv" id="browserObjects"> ...
0
votes
2answers
61 views

Get id of parent naming container in template for in render / update attribute

I have a template and in its Definition I use several forms and buttons. The problem is the definition (define) xhtml file does not know the component hierarchy. And for example I want to update the ...
0
votes
1answer
70 views

A better way to get the real ID of an component in a naming container

I got the following scenario: I got several tabs (TabView is a naming container ) and in one of the I got a p:inputText which shows a dialog(which is located in other xhtml file) , now I want the ...
0
votes
2answers
1k views

Custom Naming Container for ASP.NET GridView?

I'm looking for information on how to implement a custom naming container for the items in a GridView. My issue is that I have a GridView with a cell for each day of the week, and each cell will ...