Tagged Questions
Rendering is the process of generating an image from a model (or models in what collectively could be called a scene file), by means of computer programs.
23
votes
8answers
14k views
How do I render a partial of a different format in Rails?
I'm trying to generate a JSON response that includes some HTML. Thus, I have /app/views/foo/bar.json.erb:
{
someKey: 'some value',
someHTML: "<%= h render(:partial => '/foo/baz') -%>"
}
...
13
votes
8answers
2k views
IE9 letter-spacing problem
I have a page that renders ok, in FF (3x, 4x), Chrome, IE (6, 7, 8).
When tested on IE9 the texts are wider.
Investigating the problem it appears that the text is actually rendered whith letters ...
13
votes
3answers
3k views
Rails render partial with block
I'm trying to re-use an html component that i've written that provides panel styling. Something like:
<div class="v-panel">
<div class="v-panel-tr"></div>
<h3>Some ...
12
votes
3answers
259 views
Chaos when incorrectly writing to writer during Render() method
Could someone please explain what is going on here.
I have the following markup:
<html>
<head runat="server">
<title>My title</title>
<my:MyControl runat="server" ...
8
votes
3answers
813 views
Entire Table is pushed to the next page when rendering a SSRS 2005 Report (as .pdf) in SSRS 2008
I have a SSRS 2005 report that I'm rendering in SSRS 2008 as a .pdf. The report contains (among other things) a table that's very simple: header row, details, no footer, no aggregation, no grouping, ...
8
votes
5answers
2k views
Fluent interface for rendering HTML
Rendering HTML with the HtmlTextWriter isn't incredibly intuitive in my opinion, but if you're implementing web controls in web forms it's what you have to work with. I thought that it might be ...
8
votes
4answers
2k views
Capturing HTML generated from ASP.NET
How do I best capture the HTML (in my instance, for logging) rendered by an aspx-page?
I dont want to have to write back to the page using Response.Write, since it messes up my site layout.
Using ...
8
votes
4answers
10k views
Rendering file with MIME Type in rails
Here's the code:
render :file => @somedir + "/blah.xml"
...but the resulting MIME type is text/html when I check in FireBug. How do I specify a MIME type in this case?
8
votes
3answers
3k views
Best way to pretty print XML response in grails
given this in a grails action:
def xml = {
rss(version: '2.0') {
...
}
}
render(contentType: 'application/rss+xml', xml)
i see this:
...
7
votes
1answer
314 views
How to open and render SVG files in .NET environment?
Are there any relatively easy ways to deal with SVG images in .NET?
1) How to extract all graphic primitives from file.
2) How to render a SVG file to memory buffer (with transparency)
P.S.
I'm ...
7
votes
5answers
248 views
ASCII DOS Games, need help with Rendering methods!
I'm writing an old school ASCII DOS-Prompt game. Honestly I'm trying to emulate ZZT to learn more about this brand of game design (Even if it is antiquated)
I'm doing well, got my full-screen text ...
7
votes
4answers
12k views
Rails: Pass parameters with render :action?
I have a form that displays differently depending on the parameter it was called with.
Ex.
testsite.local/users/new?type=client
So if type was a or b, the form would display different fields.
My ...
6
votes
3answers
352 views
How to render HTML element without using web browser?
Is there a way how to draw specific HTML element content on a canvas without using any web browser control ?
With this code I'm rendering the element to the form's canvas (just as an example).
It ...
6
votes
1answer
525 views
Rails 3 unwanted html escaping
I am converting my fat Rails2 application to run on Rails3. After a long intense fight with an army of bugs and my bosses yells, the page is all rendered as an escaped html string. So all the divs, ...
6
votes
3answers
259 views
Useful program to render CSS in different browsers instead of installing each one separately?
In order to test CSS in different browsers, do I have to result to installing each browser on my development system? Isn't there a useful program where you can just load an html+css file and view how ...
6
votes
3answers
891 views
What's the difference between Render and RenderControl in WebControl creation?
I've recently learned to write my own WebControls, but I'm still hazy on the difference between Render and RenderControl. I started out using Render, but at some point I started using RenderControl, ...
6
votes
2answers
2k views
How to detect Render Mode of browser for current page?
I know that modern browsers generally have two render mode: standard mode and quirk mode. The browser detects the heading DocType.
The question is how to detect render mode of current page at ...
5
votes
1answer
112 views
Am I rendering BSP trees incorrectly?
I have a BSP tree loaded into memory. I first find out what leaf I am in. Next, I decode the PVS. Then, I run through each region in that PVS and see if it lies within my frustum.
I have been told ...
5
votes
3answers
293 views
MuPdf Reader integrate in project
I am working on some stuff which able to read the pdf in my application and i want to put pdf view is in my custom layout .i had preferred
Android PDF Viewer but when i performed zoomIn , zoomOut ...
5
votes
2answers
334 views
How do I contribute to the Android project on supporting/rendering non-English language?
I have just started with Android development and bought a handset(HTC Hero) for test and usage purposes. The sad part is that it doesn't display one of the scripts (Devanagari to be precise). Hence, I ...
5
votes
3answers
2k views
Using g.render in a grails service
I'm trying to use g.render in a grails service, but it appears that g is not provided to services by default. Is there a way to get the templating engine to render a view in the service? I may be ...
5
votes
4answers
2k views
How to render a smooth path given a set of data points?
I've been puzzling over path rendering for the past couple of days without any real solution.
By path rendering I mean given a set of x,y data points (at varying distance) to draw a dashed line (or ...
4
votes
2answers
327 views
How do I render only some specific model-fields with an InvariantCulture, while the rest keeps using the users culture?
I have a couple of hidden inputs on an asp.net mvc view. Their values contain objects of type double. I want them to be rendered with the InvariantCulture as they are used to be fed to an api (google ...
4
votes
2answers
187 views
Where to render comments controller in Rails on model validations failure?
I have a simple Video model in my rails app that has_many comments. I am displaying these comments on the video's show page. When I submit the form everything works fine; however, if there are ...
4
votes
3answers
2k views
OpenGL: Trouble with Render to Texture & Framebuffer Object
I'd like to render a scene to an initially empty texture. To do so, I use a Framebuffer Object to which I attach an empty 2d texture and a depth buffer. After the set up, as for testing, I draw a ...
4
votes
2answers
290 views
Rails 3 Toolbar render
In my website toolbar's I would like to display the number of unread messages in a red circle,
So I think the best way is to create a method in ApplicationController named update_notification :
...
4
votes
4answers
6k views
Methods for limiting the Rails render format to html
I have a Rails 2.1.2 site that only has html templates e.g. jobs.html.erb, so when I request a restful resource:
www.mysite.com/jobs/1
It renders my job in html, however, if I request:
...
4
votes
4answers
3k views
rendering JSP to a string
What is the way to render jsp file to a string? Is it possible without using frameworks like spring/struts/etc?..
4
votes
3answers
4k views
One controller rendering using another controller's views
I have QuestionController
I now have AnotherQuestionController with actions which should render using templates and partials in app/views/question/
Is this possible? Seems like it should be.
I've ...
4
votes
4answers
944 views
Server Sided 3D rendering
My questions have to do with this very interesting article:
http://www.techcrunch.com/2008/07/09/otoy-developing-server-side-3d-rendering-technology/
What they say:
In this article it is claimed that ...
3
votes
3answers
83 views
Chrome Renders CSS Differently Online vs Offline?
I'm having a problem with Chrome rendering my page fine when loaded locally, but something goes wrong once the page is online. The first thing I did was check Safari, because they both share the same ...
3
votes
2answers
89 views
How to render UIView into 2 parts
I am trying to develop transition effect, when one view splits into 2 parts with upper part animated upwards and lower part animated downwards to revel the view behind it.
I am using UIView and ...
3
votes
1answer
55 views
Command Line / Shell based rendering of URLs employing Javascript (Jive Server) for subsequent processing
I have the following situation.
We are using a LaTeX-based documentation system which needs to obtain information that is posted to a Jive (Clearspace) webpage. This information is provided on a ...
3
votes
2answers
117 views
Changing cursor when rendering a JList
I've achieved what I'm trying to do, but I can't help but to think there is a more efficient way...allow me to illustrate.
In short, the question I'm asking is if there's a way to determine when a ...
3
votes
1answer
156 views
Rendering command validation errors across a redirect
I cannot render the errors from my command object. It does the job well but my .gsp view does not render the errors I raise.
Here is my controller action:
def handleModifyProfile2 = { ...
3
votes
3answers
164 views
Problems using VBOs to render vertices - OpenGL
I am transferring over my vertex arrays functions to VBOs to increase the speed of my application.
Here was my original working vertex array rendering function:
void BSP::render()
{
...
3
votes
1answer
291 views
Rendering mesh polygons in OpenGL - very slow
I recently switched from intermediate mode and have a new rendering process. There must be something I am not understanding. I think it has something to do with the indices.
Here is my diagram: ...
3
votes
2answers
641 views
WPF DataGrid is very slow to render
I have tried using both a customized DataGrid as well as the stock one in WPF. I have tried populating them manually as well as through bindings. In both cases they are slow.
I have a scenerio ...
3
votes
1answer
175 views
Rendering Admin Forms When An Error Occurs in Django
I have a model that contains a field with a foreign key and this field can be NULL and is optional. I can save this form in admin page without any problems if this field has no values. However, when ...
3
votes
3answers
278 views
How do you create an image of a web page in PHP?
How can you render and save a web page as an image in PHP, probably with a width of 600px. How can I render a page in PHP without using a browser? How can I save it with a given resolution and image ...
3
votes
4answers
266 views
Render graph in Python and Javascript
I am looking for libraries that can render graphs, PRETTY graphs.
I need to both render static images, preferably with python, and also to render them dynamically in the browser. A Canvas solution ...
3
votes
1answer
382 views
In WPF how can I get the rendered size of a control before it actually renders?
I'm doing custom rendering in a Decorator subclass. Our rendering requires creating complex geometries which only neded to be re-created when the actual rendered size changes. As such, I have moved ...
3
votes
1answer
273 views
Rails calling action from view
Hopefully have a simple question here but I cannot for the life of me seem to find the answer. Just started working with RoR but came from ASP MVC before. I am having an issue rendering partial ...
3
votes
3answers
2k views
Ruby on Rails - Render JSON for multiple models
I am trying to render results from more than one model in JSON. The following code in my controller only renders the first result set:
def calculate_quote
@moulding = ...
3
votes
3answers
764 views
Having to explicitly render :layout => 'application' in controller actions in my Rails 3 app
I am having to explicitly render :layout => 'application' in my controller actions in order to get my new rails 3 app to actually use the application.html.erb layout file.
Any obvious things to look ...
3
votes
4answers
169 views
Will a page taking 2-3 mins to render cause a javascript 'taking too long' warning
I'm using the jQuery document ready method - $(function()
If the page takes too long to render (say 2mins+), will this be the reason for the page throwing a javascript taking too long to execute ...
3
votes
1answer
2k views
Using CreateOrthographicOffCenter in XNA
I'm trying to figure out how to draw graphics in XNA, and someone else suggested this.
But before I attempt to use this...
If I create and use this camera, and set LEFT,TOP to 0 and WIDTH=256 and ...
3
votes
2answers
866 views
Delphi 7 and EMF+ files
I have an application that can load various graphical file formats such as bmp, jpg, png, emf, etc... and render them onto the screen for previewing.
I am using Delphi 7. I have just been introduced ...
3
votes
2answers
1k views
Rails Layout Rendering with controller condition
I don't know what's the best way to doing this.
On my application.html.erb I define a header div.
My default controller ( root ) is a homepage controller.
And I wish that if I'm at index of the ...
3
votes
3answers
904 views
How do you render a User control from a ashx or webservice?
Question is it possible to have a .ashx or webservice return a user control rendered? if so how would i do this?