XHTML, eXtensible HyperText Markup Language, is an application of HTML that is also a valid XML document, as opposed to standard HTML which is based on SGML. It is a markup language commonly used for webpages.
4
votes
0answers
409 views
Is this XPath query on parsing XHTML wrong? using TouchXML
I have been trying to parse a XHTML doc via TouchXML, but it always can't find any tags via XPath query.
Below is the XHTML:
XHTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
3
votes
0answers
364 views
FCKeditor wrapping certain HTML5 elements with <p> tags - causing problems for older browsers
I'm being forced to use a WYSIWYG editor on a CMS our website is being published on, and the default behavior for white space is blank <p></p> tags (this is expected).
...
3
votes
0answers
405 views
How to set base url in Flying-Saucer, while rendering HTML to PDF?
I am trying to render a HTML page to PDF using Flying-Saucer. The HTML is created in memory and passed to the renderer as
renderer.setDocumentFromString(new String(htmlByteArray));
The issue is ...
2
votes
0answers
218 views
Element Incorrectly Positioned on Page Until Window Resized
I have a webpage containing several Divs which contain individual 'pages'. I have defined the following CSS styles:
@charset "utf-8";
/* CSS Document */
.hideDiv{
display:none;
}
.showDiv{
...
2
votes
0answers
121 views
How to add content to a containerNode that already has its content from href using dijit.Dialog
I’m new with this javascript and dijit.
My problem: In my js-function I’m building up a dijit.Dialog, using parameters that has been sent to the function.
One of the parameters is a href to en ...
2
votes
0answers
217 views
Why Facelet HTML Validator validate my xhtml file don't complete
I have 1 file xthml as the following:
<?xml version="1.0" encoding="UTF-8"?>
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
...
2
votes
0answers
339 views
JTidy (HTML-Tidy) Configuration used on w3c HTML Validator
I am using JTidy (the java port of the HTML Tidy library) to scrub some existing sites. When I used my configuration of JTidy is seems to be very strict and ends up cutting off the bottom of the page ...
1
vote
0answers
34 views
How Float left using XHTML 1.1 ? (<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.1//EN” “http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd”>)
My first post here...
I need two lines YES or YES:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" ...
1
vote
0answers
89 views
IE8: checkbox onclick not called when setting class to that
I have a code like this
<input type='checkbox' class='rating' id="sample" onclick='checkboxcheck(parameters)' />
<label for="sample"></label>
And CSS:
...
1
vote
0answers
38 views
Action attribute of <p:commandButton> is not called
I am trying to call the addMoreStatus method by using the action attribute of the <p:commandButton>, but it is not called. I have also used ajax to see if the value of session variable changes ...
1
vote
0answers
89 views
DataTable with contextMenu, multipleSelection, rowEdit
So I have a pretty complex dataTable. It should be able to edit a single row, to select multiple rows, and to display a contextmenu for each row. Single row editing works fine, multiple selection ...
1
vote
0answers
97 views
'alert' undefined in chrome
I am trying to make a field in a php form required. I am using Dreamweaver Cs3.
Dreamweaver generated the following function
<script type="text/javascript">
<!--
function ...
1
vote
0answers
21 views
How can I embed a XML document inside a XHTML document?
For example, how can I embed
<?xml version="1.0" encoding="utf-8"?>
<root>
<node><![CDATA[Text]]></node>
</root>
in my XHTML?
I know I can put it in a CDATA ...
1
vote
0answers
50 views
How to produce valid xhtml/xml output from Oracle ADF
I've tried to find a way to get our Oracle ADF pages to output valid code.
I see a reference in Can we configure Oracle ADF Faces to produce valid XHTML? but it's dated back in 2008 or so.
Is there ...
1
vote
0answers
79 views
How do I keep the Facebook Like Box from creating XHTML errors?
I am using the most current Facebook Like Box on my website. When I go to validate my site's XHTML, I am seeing that there are several errors caused by labels that are not recognized. To be specific, ...
1
vote
0answers
59 views
How do I display <Object> tag in webpage to input data other than Windows Explorer
I have recently learnt how to input data to my webpage from a txt file using tag and DATASRC. However when using the following code, it only works in Internet Explorer.
<OBJECT ID="league"
...
1
vote
0answers
48 views
Add video in xhtml that is view able on all platforms
how would i add a video into xhtml, that pulls the content of the video from the server and not like youtube,
would this be valid ? or would i be best using the normal html method ?
<!-- First, ...
1
vote
0answers
110 views
Spring+Jboss El Resolver JSF2, Target Unreachable, identifier 'user' resolved to null
I have an old Jboss server(4.2.3) running spring 3 and JSF2 with primefaces. I can get my first login.xhtml to render properly with the jsf components but when I try to do any button click I get this ...
1
vote
0answers
163 views
primefaces viewscoped and sessionscoped conflict
I have a managed bean that gets the points from database and adds them to an overlay. In the same managed bean, I retrieve related data from database and show them as user clicks on any marker.
...
1
vote
0answers
69 views
Java file is not running after xhtml page is submitted
I have a login xhtml page, where the users put in their passwords/usernames
here it is :
<?xml version="1.0" encoding="UTF-8"?>
<!--
To change this template, choose Tools | Templates
and ...
1
vote
0answers
51 views
Modern way to repeat consistent sections of web pages
Currently I'm using a dwt file with Expression Web to reproduce menus & footers across many pages. However, I realized that I really don't need Expression Web other than for this feature. I'm ...
1
vote
0answers
45 views
How to block Google Map to overide my doctype from XHTML 1.0 Strict to HTML 4.0 Transitional
I'm a simple programmer. I can read some code (html and php), alter it with trial and error, and I enjoy myself doing so.
While working on an XHTML 1.0 Strict page, I discovered that "iframe" was ...
1
vote
0answers
71 views
How to get firefox to re-post data on page refresh?
I'm currently developing an application that needs to behave consistently across all browsers. One of my pages loads in response to form submission. When the user refreshes the window at this page, ...
1
vote
0answers
69 views
Div's tend to collapse when HTML file is moved/uploaded to host.
I've been working on a website for my degree, and it was all going swimmingly; until I transferred the index page to my flash drive. When I loaded the page in both IE9 and Chrome, all of the content ...
1
vote
0answers
177 views
Creating subTable within subTable with primeface
I need to know how to create table such as below in primeface.
I have tried with subTree within subTree but it's not allowed in primeface.
For this I have 3 classes:
Product: name, containing array ...
1
vote
0answers
175 views
JSF - passing xhtml textfield to another xhtml page textfield
I found several similar questions but none of them was helpful as they referred rather to passing variable to beans and nothing else.
I have a page ("RegistrationStep1.xhtml") with a text field which ...
1
vote
0answers
62 views
Invalid frame size in XHTML generated from JasperReports report
In the generated XHTML, the frame having a width of 204 pixels in iReport desiger and border 1 pixel wide on the right side, has a width of only 203 pixels, but should have a width of 204 pixels.
The ...
1
vote
0answers
111 views
SVG width in Opera Mobile not bigger than 800px
I have SVG with width set to 2048px and I want it display in Opera Mobile (with possibility to scroll horizontally if it is bigger than screen), but for some reason Opera is always displaying the SVG ...
1
vote
0answers
52 views
sortable table with text in the table that links to websites
Here is code I found that creates a sortable table. I would like to make the text in the table link to the articles listed. How can I do this?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
1
vote
0answers
41 views
To parse the html of an email, get all the img tags and replace the src value with the url of the image I want.
I have to parse the html of an email, get all the img tags and replace the src value with the url of the image I want.
I have got some code for this on following link:
changing src attributes ...
1
vote
0answers
139 views
Facebook Javascript SDK not working on .xhtml page
I tried out the Javascript SDK in an html file, everything worked fine. Then moved the same code to a .xhtml file & it completely stopped working.
The code as follows:
Moved from file test.html ...
1
vote
0answers
39 views
Validating a CMS page
I am forcing a CMS (Concrete5) page to parse xml with:
<? header('Content-Type: application/xhtml+xml'); ?>
The parser is stepping me through the errors...
In trying to find a better ...
1
vote
0answers
131 views
What is the __expr-val-dir html tag attribute in SharePoint master pages for?
This non-compliant, mysterious attribute seems to be simply a copy of the dir attribute, but I cannot find any reference to it or example of it being used anywhere. Can anyone shed some light on ...
1
vote
0answers
623 views
itext to convert xhtml to pdf
I have a XHTML file with text fields and check boxes; when i am trying to convert my xhtml to pdf using ITextRenderer; iText is dropping form fields (like checkboxes and text boxes in pdf).
my code ...
1
vote
0answers
261 views
Recommended way to generate XHTML documents with lxml
The Python library lxml appears to provide several builders for generating HTML documents. What's the difference between these?
But these generate plain HTML, rather than XHTML. While I could ...
1
vote
0answers
211 views
Unable to add jsp page to xhtml page?
I am trying to include jsp page in my xhtml page following how-to-include-a-jsp-page-in-a-facelets-page but UIComponentBase class is not found, not sure why as application builds fine am getting this ...
1
vote
0answers
167 views
Interesting XHTML/JSTL validation issue
I'm using Emacs' nxhtml-mode and mumamo (multi-major-mode) to validate (and use auto-completion etc.) in real-time on an XHTML page containing some JSTL code.
It's working and I really like what I'm ...
1
vote
0answers
51 views
Using RDFa meta property with facebook's XHP
I'm playing with xhp and I got stuck on this:
echo <meta property="og:title" content="page title" />;
It throws:
Fatal error: Uncaught exception 'XHPAttributeNotSupportedException' with ...
1
vote
0answers
118 views
Eclipse hotkey for the mouse double click?
This is a related but accepted a wrong answer.
I am looking for a way to get a hotkey which selects text like when double clicking in eclipse.
e.g. i have
<h:panelGroup ...
1
vote
0answers
94 views
Why are my lefthand navigation links behaving oddly in IE9 only?
http://www.colorshoutconcepts.com/
On this website, .. my lefthand navigation links are displaying & behaving perfectly in the following browsers (on the PC platform):
Firefox 8.x
Safari 5.x
...
1
vote
0answers
263 views
SAP BPC get content of AppPublication folder
Are there anyone that have tried to get the content of the folder called AppPublication in SAP BPC?
I have some files that i have published using SAP BPC ePublish -> Web Ready File
Now i want to ...
1
vote
0answers
640 views
ResourceBundle and Properties file - using keys vs using values
I have a rich:select which is like the h:selectOneMenu and am using selectItems to populate the drop-down menu from properties file (using ResourceBundle). Here is the problem , after populating the ...
1
vote
0answers
160 views
Different behavior with .val() and .attr(“value”) using ajax return data on a clone()'d but uninserted element
As the title says, I'm trying to set the value of a .clone()'d form field using the results of a $.getJSON() request. All of the return values have the same key as the name attribute of the form ...
1
vote
0answers
119 views
Adding Html2Xhtml library to project
I am trying to use HTML2XHTML but how can I include it into my project?
I am using VS2008 and I put the dlls into bin folder of my project and add Html2Xhtml to the refs, but it still does not ...
1
vote
0answers
54 views
How to Proceed with Firmware, Software, and Web Control using XML
I've been approached about utilizing XML to help "tie together" several currently dissociated tasks. Coming from an almost totally .NET/C++ background, I'm having trouble getting a bearing on which ...
1
vote
0answers
435 views
Dynamically added video object to page, how to get plugin player to recognize it?
I've used javascript to dynamically add an object element of type video/mpeg to a web page, but the plugin that is to play the video doesn't handle the new object.
Other possibly relevant details: ...
1
vote
0answers
2k views
send SMS from WAP page
This question is related to sending an SMS from a link in a WAP page?
Historically I have used sms: which has worked on SonyEricsson, Nokia and other such 'legacy' devices. An example of the mark-up ...
1
vote
0answers
29 views
How to make Server controls in .NET 1.1 render in compliance with Xhtml
I'm "re-skinning" a legacy .NET 1.1 site (i know, don't ask).
Anyway, originally it was all horrible html4.0 markup, and the new design is xhtml.
How do I change the way server controls render in ...
0
votes
0answers
13 views
Is this a possibly malformed xhtml cid in URI?
Over the last 24 hours my network received around 1 million requests for the following URI.
smp/deals/deals.xhtml;jsessionid=EDADC8DC7B4693C23A83DB42A06F4CF7.##app server ...
0
votes
0answers
27 views
Display Blob Image using primefaces
I want to display blob type image using primefaces. There is a error in the server log, and the page is displayed without the picture. I used the following code.
Html code =
<h:form ...




