Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
146 views

Is a bulleted list item always indented exactly 1.8em?

I made a css-only dropdown menu. The requirement was to have a horizontal bar of items that can each drop down a vertical menu. Furthermore, those items should not drop a tertiary menu, but instead ...
6
votes
1answer
169 views

Why does the browser wait to end loading the page?

Can anyone explain me why those spaces (marked with ?) are there? They are delaying the page loading. I thought it could be the page/script parsing time, but ~350ms looks too much for a simple page; ...
5
votes
4answers
302 views

How do I know when HTML has fully rendered

case 1: I load a very large HTML page that includes a lot of complex layout and fonts. The page will take some unknown time to render. case 2: I use jquery .html() function to make significant ...
4
votes
4answers
2k views

rendering html to png (server-side)

I have a workflow model. Internet Explorer doesn't support some features required for model editing functionality (and regular user doesn't need it). I want a read-only preview of my model. Is it ...
4
votes
2answers
474 views

HTML renderer drop-in, C++ code

I want to drop in an HTML renderer that will basically be used for render-to-texture operations. If I can render the HTML to an HDC, that would be perfect. I found HTMLayout, which isn't bad. But ...
3
votes
3answers
258 views

C++, win32 api: How to create an html rendering window so that your application would get callbacks from JS calls?

What I need is simple: we have a console app project. We want to have such a function that would open a simple window with nothing but html (default system based) html + js rendering window that would ...
3
votes
1answer
53 views

rendering issues in a (seemless) 3 column item

This problem has been bothering me for sometime now, I have not settled on a solution and have tried several approaches. I am trying to keep my markup semantic as possible. I have searched for similar ...
3
votes
1answer
313 views

How to take full snapshot of a web page? (scrollable size large)

I want to take a snapshot of a web page. The image should show the full content of the browser window (without the scroll bar I mean). I want to do this dynamically using a PHP script.
3
votes
1answer
267 views

CSS3 rotate renders elements to make them overlap floats

I have a problem with some CSS3 stuff, as the title describes. In my website I use a couple of article's that have a article { transform: rotate(1deg) } (plus the three browser vendor ...
2
votes
2answers
92 views

Do any web browsers garbage collect removed dom elements?

If one made a web application that never refreshed a page but was built completely from the first page plus Javascript requests, thereby creating and destroying elements as required, would any of the ...
2
votes
1answer
131 views

height and width values for css in chrome are too small. Or is the width too large?

I have a web site page that doesn't seem to be rendering properly for chrome in safari. It appears it is rendering the width of the screen with twice as many pixels as other browsers. I suspect it ...
2
votes
3answers
126 views

How to Load Javascript Simultaneously with HTML

Is there any technique to render a javascript file in the same time as the HTML is rendering? My first idea was to load it into the head in a <script> tag, but as I see this doesn't affects the ...
2
votes
1answer
557 views

MVC3 ascx vs razor page rendering issue

I have an aspx web page that renders correctly. When converted to razor, it does not. Here is a simplified example (stripped of all extraneous stuff). aspx: <asp:Content ID="indexContent" ...
2
votes
2answers
98 views

Bind an event handler on a element who's inserted by the jQuery .html() function

I render some new content with .html() after ajax call into my site. $.getJSON(scriptURL, $("#domainForm").serialize(), function(data) { $("#checkedDomain").html(data['html']) }); Now. How can ...
2
votes
0answers
176 views

Is there a C library for rendering HTML into text mode? (curses or otherwise)

I need to render some HTML into a terminal using escape codes (ANSI colors etc.). I'm looking for a C library to do that, preferably with few dependencies. I know that there are several web browsers ...
2
votes
1answer
131 views

PGU HTML Renderer can't render most sites

I am trying to make a web browser using pygame. I am using PGU for html rendering. It works fine when I visit simple sites, like example.com, but when I try and load anything more complex that uses an ...
2
votes
1answer
1k views

Display Simple Web Page In My Application Using Blackberry BrowserField

What I am trying to do is display a simple web page in my application (no javascript,cookies or any scripting and not trying to detect any events such as mouse click etc.). I am using the code below ...
1
vote
1answer
34 views

Gzipped response shown as raw data

On the beta version of our new web app I've received this below messed up page from one of our test users. The user uses FF on Mac. The site is build on asp.net (.NET 4.0), it uses AJAX and is ...
1
vote
1answer
45 views

PageableListView Not rendering my data as required

i am working on wicket, where i am supposed to show my data's under <tr> <td>Name</td> <td>Single Player Score</td> <td>Double Player Score</td> ...
1
vote
1answer
49 views

Why Rails images display #<Photo:0xB4F28FA># object id?

Here is my view: <div> <ul> <%= @album.photos.each do |photo| %> <li><%= link_to(image_tag(photo.soure.url(:small)),photo.source.url(:medium)) %></li> ...
1
vote
1answer
157 views

Rendering of HTML in firefox and chrome

<div style ="float:left;height:20%;width:70%;"</div> <div style ="float:right;height:20%;width:30%;"> </div> In chrome the two divisions are in same line .But there ...
1
vote
0answers
414 views

Reporting Services HTML export - image resizing issue

  Hello. In order to execute reports’ rendering into the HTML 4.0 format I use the ReportExecutionService class In order to get exported report as a stream I use the following code: ...
1
vote
4answers
1k views

Vertical alignment text in container WebKit vs Firefox

The problem is that Firefox and WebKit based browsers seem to align text vertical in different way when contained in a element that have a even height/line-height and the font-size is uneven (or vice ...
1
vote
0answers
464 views

How to use webkit in a Java project?

I need to implement a VIPS algorithm, which is segmentation of a web page based on vision. So, I need a tool to render a html page. Here are my requirements: I want to know the color of any ...
1
vote
1answer
97 views

Website renders differently on server vs locally

I'm having a very bizarre issue. I have been building a website locally on my linux box and all was well until I uploaded the site files to a place where i have some hosted space. Everything renders ...
1
vote
1answer
1k views

Background image rendering issues in Mobile Safari (iPad)

I'm experiencing a simple, yet unexpected rendering issues when browsing my webpage using Mobile Safari and iOS. Basically, my page has tabs, which are made of three divs and a "a href" inside the ...
1
vote
2answers
833 views

How do you render HTML using Java?

I am working on building a web browser in Java. I have used a parser (JTIDY) to parse the HTML page into a DOM document. I know that rendering means the graphical representation of DOM document. But I ...
1
vote
4answers
55 views

what deos my html not render on the page?

i have this page at http://kornar.co.uk/example.html but it deosnt render ther html, and i know it thier because when i check view source the html code is thier, on my localhost it works perfectly, ...
1
vote
3answers
383 views

Convert HTML page to an image

I want to change my HTML page as an image. Is there a way in PHP to change or save an HTML page as an image?
1
vote
5answers
216 views

Strategies for rendering HTML with Javascript

I take a fat JSON array from the server via an AJAX call, then process it and render HTML with Javascript. What I want is to make it as fast as humanly possible. Chrome leads over FF in my tests but ...
1
vote
0answers
288 views

Internet Explorer IE 8 overlay lines render issue on dropdown

I have an issue with menu dropdowns that use JQuery. Using IE8, take a look at my menu just below the header. Hover over 'Acrylic Awards', then 'Award Plaques', then 'Crystal Awards'. ...
1
vote
3answers
716 views

Getting a scriptmanager into a dynamically rendered page

We are rendering usercontrols dynamically like this: public string RenderControl(string pathcontrol) { string html; var page = new Page(); var control = page.LoadControl(path); ...
1
vote
3answers
1k views

HTML Rendering with C#

Let's say I'm crazy and I want to implement an basic HTML rendering engine with c#. I would like to use WPF Controls to display the HTML Layout. While there is nothing to gain with such an idea, I ...
1
vote
3answers
972 views

CSS sometimes does not load properly on initial load

Sometimes the header of my website does not form properly when I first load a page. Incorrect: In the screenshot below the headings are inside the black horizontal line After refreshing the ...
0
votes
1answer
26 views

Where do these duplicate, empty links come from?

I'm seeing some very strange things happening here, and not sure what's going on. In my source, and I have checked when viewing the webpage, all I have is this: <header> <hgroup> ...
0
votes
1answer
41 views

Inside menu, render the current category at top

I need to render a sidebar with a navigation menu that contains all the categories, and its respective subcategories, of an application. However, when the current page is referring to a category or ...
0
votes
0answers
17 views

pages not rendered at all

Sometimes webpages are not displayed correcty, that means not rendered at all. The browser displays everything starting with the http-header as plain text: 0 HTTP/1.1 302 Found Server: Oracle XML ...
0
votes
2answers
40 views

Why does this Django form rendering taking forever?

I have a ModelForm based on a gigantic 300 fields model. Actually one model with 150 fields inheriting from another one with 150 other. I was expecting the model to cause some issues at syncdb or ...
0
votes
4answers
70 views

Jquery - Strange Number to String conversion

I am encountering a strange unwanted Number to NaN conversion, without knowing where and why. I am clearly missing something here but I cannot figure out what. Any suggestion is most welcome ! ;) ...
0
votes
0answers
150 views

Firefox 7.0.1 - Mac OS X 10.6.8 - Graphic Issue

I tested this page: http://kulturzentrum-hof.at/index.php?id=9 on serveral apple comupters (iMac 24", iMac 21,5", MacPro // OSX 10.6.8 and 10.7.1) with firefox 7.0.1 and I only get on the MacPro (2x ...
0
votes
1answer
27 views

Cause of offset/margin in FF

trying to have some sort of gradiented border by having a parent element have the gradient border and then the child element have the regular background. This seems to screw up in FF but works in ...
0
votes
4answers
59 views

Page Speed in appending external js and css files

i simply would like to know from who has well documented about, if i have 10 js/css external files to append at my site does is better to compress them into only 1 file or is good to have 10,20 ...
0
votes
0answers
145 views

Simple form and Gridview based reporting in MVC

I've been migrating my ASP.Net experience to MVC and till now it has been a pleasent experience with my web-app now I want to go for reporting. With the old ASP.Net I've used Crystal reports but it is ...
0
votes
4answers
426 views

Render HTML to display in a Java application

I'm interested in displaying HTML text (using CSS) in a Java app. What options do I have? Although I don't use SWT in my app, I see SWT provides an interface to a WebKit browser on all platforms. Is ...
0
votes
1answer
722 views

Outlook collapse of table cells in HTML emails

I have come across this issue and have yet to be able to find a solution to it. With an html e-mail I have found that in some Outlook programs it will collapse the cell. Both 2007/2010 For instance: ...
0
votes
1answer
41 views

Why are images not showing up with Carbon's HTML rendering library

I have an old program that shows an embedded browser using the HTML Rendering library from Carbon. I am migrating it from codewarrior to Xcode, using the 10.4 SDK. While the HTML is displayed ...
0
votes
2answers
206 views

Best control for rendering HTML

I have the need to render some html text (not an html page with <html> and <body> tags and everything, just some <i>'s and <hr />s and stuff) in a C# .NET 4.0 Winforms ...
0
votes
0answers
30 views

Control over HTML rendering

Wondering if HTML rendering on the browser can be controlled depending on some condition in the DOM. For better understanding: Say in Twitter home page if we want to stop rendering the page after the ...
0
votes
1answer
92 views

CSS visibility rules

I tried searching for this on Google, but to no avail. Can someone point me to a good resource that explains the rendering and visibility rules for CSS ? Or if it is very simple, can someone please ...
0
votes
4answers
57 views

How does ASP.NET Webforms decide HTML name of a control?

In ASP.NET web forms when a control is rendered on the page, the ID of each field is modified with the ctrl01 as needed to ensure collisions don't happen (aka myField becomes ctrl01$myField or ...

1 2