1
vote
3answers
49 views
How do I create a link to a specific Post object in a Rails view?
I am new to rails so excuse any easy questions. I have developed a blog and I am doing some customization. Just curious, if I want to render a specific post on my index.html.erb pa …
1
vote
2answers
37 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 s …
1
vote
1answer
42 views
Is it possible to take a crawled html file, and get information about how a browser would render it?
Examples of stuff I'd like to do:
- process javascript and produce new DOM
- be able to provide information about DOM objects as rendered (e.g. position, size)
Edit: My main conce …
0
votes
3answers
88 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 …
-1
votes
1answer
36 views
Running a premade bulletin board through my Front Controller in Zend
Hi all,
I tried to ask this once, but I think that my former question was too unclear for you guys to answer, so I'll try again
I'm making a website using the Zend Framework, and …
1
vote
5answers
155 views
How can I modify the entire ASP.NET page content right before it’s output?
I have a page that has a bunch of user controls on it. I want to be able to have "macros" or "placeholders" directly in the content that will get replaced in my code. It shouldn' …
0
votes
2answers
77 views
help with rails render action vs routing
I was using some image cropping example that I found online and now I got confused. There is actually no "crop" method in my controller. Instead (following the guide) I put a
re …
0
votes
1answer
16 views
How can you “plug into” the WPF rendercycle to get accurate results from VisualTreeHelper?
I am currently writing a WPF User control (PARENT) which can contain multiple child (CHILD) user controls. I am connecting the (CHILD) controls with polylines.
To do this I need t …
0
votes
4answers
335 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 di …
2
votes
2answers
63 views
32 pixel gap at top of opengl es texture
I am trying for the first time to render to a texture using openGL ES (for iPhone) and then display the texture on the screen. Everything works except that there is a 32 row gap at …
1
vote
2answers
38 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 u …
2
votes
2answers
171 views
Render partial from another model
Hi everyone,
I have a rails application that models a house. There is a house model that has many parameters and it has_many rooms. A room has a house_id and a name. I've also …
2
votes
3answers
77 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?
0
votes
0answers
27 views
welcome.ascx not rendered by render method on Sharepoint masterpage
Hi all,
i've following problem:
writing this method on a sharepoint default masterpage (blueband.master)
protected override void Render(HtmlTextWriter output)
…
0
votes
1answer
71 views
Cannot render form tag using ‘render’ in Grails Controller
Using markup with the render is not adding the form tag.
I tried this with contentType "text/html", "txt/xml" and it does not work.
I have this in my controller:
def myTest= { …
