I m 期待着建立一个共同基金应用程序,在浏览器的不同区域展示出多个xhtml页。 我可以用金字塔来这样做,但是如果金字塔不是三维,它们会增加额外的记忆和接触物体。
我正在考虑采用一种办法,在主页内使用亚x装载不同的xhtml页。 问题在于,主页内有许多内容将产生同样的遗症,因为女方仅在各自的观点内独一无二。
我知道1个解决办法是执行一些处理这些重复ids的客户方逻辑,但最好不要完全重复。
解决问题可以做些什么?
次要问题: 是否有框架更好地处理这一要求,即在同一浏览器窗口中展示多页?
I m 期待着建立一个共同基金应用程序,在浏览器的不同区域展示出多个xhtml页。 我可以用金字塔来这样做,但是如果金字塔不是三维,它们会增加额外的记忆和接触物体。
我正在考虑采用一种办法,在主页内使用亚x装载不同的xhtml页。 问题在于,主页内有许多内容将产生同样的遗症,因为女方仅在各自的观点内独一无二。
我知道1个解决办法是执行一些处理这些重复ids的客户方逻辑,但最好不要完全重复。
解决问题可以做些什么?
次要问题: 是否有框架更好地处理这一要求,即在同一浏览器窗口中展示多页?
http://java.sun.com/javaee/6/docs/api/javax/faces/component/NamingContainer.html
<?xml version= 1.0 encoding= UTF-8 ?>
<faces-config version="2.0"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<component>
<component-type>javax.faces.ViewRoot</component-type>
<component-class>components.ReplacementRoot</component-class>
</component>
</faces-config>
这一样本实施产生了<代码>clientId。 以<代码>为基础 意见 Id:
public class ReplacementRoot extends UIViewRoot implements NamingContainer {
@Override
public String getClientId(FacesContext context) {
return "jsf" + getViewId().replaceAll("[^\p{Alnum}]", "_");
}
}
这将产生以下表格的客户识别符号:jsf_index_xhtml:foo
。
查阅技术,因为这可能是你想要的。 问题在于,我已经看到了真正良好的港口设施实施,而且你需要一个联塞论坛的港口桥梁,以便处理联森论坛的生命周期——不知道其中的状态。
Another option would be to create your own facelets provider, that adds dynamically whatever components you need, so when you rebuild the component tree, they will suddenly appear. I couldn t tell you more about that either, but I ve seen it done and working for some wiki-like software that was editing the pages as facelets xhtml.
I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...
I m trying to find a reusable way to set focus from one text box to another upon enter using ASP.NET, but using client-side JavaScript to do so. The only reason I mention this is to be done in ASP....
I have some Javascript JQuery code that does an Ajax call to the server every 5 mins, it s to keep the server session alive and keep the user logged in. I m using $.ajax() method in JQuery. This ...
Why are my AJAX requests failing? I have a website www.foo.com, and I m running Tomcat on the same server, www.foo.com:8080/services. However, when a file on foo.com makes an ajax call as such: $....
I want to know if there are existing technology that make your 3d models in sketch into virtual tours, using either Ajax or Flash for web presentation. If there s none, which will be a good approach ...
I have a entry form. Below it, I want to show a grid containing existing records. As the user clicks on a row of the grid, the values must get filled in the fields of the form above. Is there any way ...
I have asp.net application where i have a div which showing the value from other site. The value of that site is changing continuously. I want that my div will automatically update in some interval ...
Ok, I m stumped. Basically, this script works fine in FF, but not in IE (6,7 or 8) - in which it returns an "Object doesn t support this property or method" error. Any ideas?: function ...