The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
68 views

manifest attribute of Summer13 not working on my prerelease org?

<apex:page showHeader="false" sidebar="false" standardStylesheets="false" docType="html-5.0" manifest="/apex/CacheManifest"> <header> <h1>Congratulations!</h1> ...
-2
votes
1answer
141 views

HTML5 FileReader API & IE Support (reader.readAsBinaryString) [closed]

I have trouble reading the Uploaded File (XLSX) via FileReader API's "readAsBinaryString" method in IE10. "readAsText" method works fine. Has anyone come across this, does IE support this method? Am I ...
3
votes
2answers
148 views

New Visualforce Tab- Available in Touch?

I'm trying to show a Visualforce Tab on the Salesforce Touch app for the iPad but havent been able to. I've enabled all the settings in the Salesforce Touch options in the setup menu plus made sure ...
0
votes
3answers
145 views

DOCTYPE in Visualforce page

How to change the Document Mode in Internet Explorer to Standards value by using visual force page coding ? I need it to display the page correctly in IE.
12
votes
2answers
486 views

IE10 Forced into IE7 Standards document mode for Visualforce

I've created a VF page which leverages some nice CSS 3 and HTML 5 features but it doesn't render correctly on IE10. This is not because IE10 doesn't stick to standards, but because it's reverting to ...
5
votes
3answers
193 views

can inputfields in a VF page with doctype html5 support types?

I have a VF page with the doc type set to html5 <apex:page docType="html-5.0" sidebar="false" standardStylesheets="false" showHeader="false" standardController="MyObject__c" > When I try to ...
4
votes
1answer
168 views

What happens if I use HTML5 docType in Visualforce?

By default, SFDC pages (including Visualforce) are served with the DOCTYPE for HTML 4.01 Transitional (!!!) -- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ...
3
votes
2answers
263 views

Building HTML with JavaScript remoting

I wrote a little @RemoteAction method that returns a string. And the string is nothing but an HTML snippet that I want inserted on my page. Callback method on the page receives the result and uses ...
6
votes
5answers
281 views

HTML5 elements vanish when rerendering Visualforce

I have noticed that HTML 5 tags like <section> and <header> disappear from the page when I reRender the page. On initial load of the page the HTML5 elements appear as expected but when the ...