Tagged Questions
The partial tag has no wiki summary.
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') -%>"
}
...
14
votes
7answers
5k views
ASP MVC View Content as JSON
I have a MVC app with quite a few Controller Actions that are called using Ajax (jQuery) and return partial views content which updates a part of the screen. But what I would rather do is return JSON ...
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
2answers
289 views
Usefulness (as in practical applications) of Currying v.s. Partial Application in Scala
I'm trying to understand the advantages of currying over partial applications in Scala. Please consider the following code:
def sum(f: Int => Int): (Int, Int) => Int = {
def sumF(a: Int, ...
12
votes
6answers
5k views
Should you use a partial class across projects
Ok,
So, I have a class library with all my database logic. My DAL/BLL.
I have a few web projects which will use the same database and classes, so I thought it was a good idea to abstract the Data ...
11
votes
2answers
2k views
Rails: Should partials be aware of instance variables?
Ryan Bates' nifty_scaffolding, for example, does this
edit.html.erb
<%= render :partial => 'form' %>
new.html.erb
<%= render :partial => 'form' %>
_form.html.erb
<%= ...
9
votes
3answers
710 views
Can Drupal's search module search for a substring? (Partial Search)
Drupal's core search module, only searches for keywords, e.g. "sandwich". Can I make it search with a substring e.g. "sandw" and return my sandwich-results?
Maybe there is a plugin that does that?
9
votes
2answers
204 views
Why can't I bind + in clojure?
Can anyone explain why I can rebind list but not +?
(binding [list vector]
(list 1 3))
(binding [list +]
(list 1 3))
(binding [+ list]
(+ 1 3))
I'd like to rebind + so I can do partial ...
7
votes
3answers
164 views
Why scala can't infer the type in a partial method?
See this example:
def hello(a:String, b:String) = println(a + ":" + b)
val m1 = hello("aaa", _ )
m1("bbb")
It can't be compiled, that I need to add the type to the partial method:
val m1 = ...
7
votes
3answers
1k views
passing parameters to zend paginationControl partial
I have a page that displays a lot of data, including Zend_Paginator.
The page action is /po/fetch?id=someID.
what i want to do is to pass the "id" parameter to zend paginationControl so the ...
7
votes
8answers
453 views
Practical uses for STL partial_sum
As the title suggests, I'm wondering what/where are the practical uses of the partial_sum algorithm in STL.
Any interesting/non-trivial examples or use-cases out there?
7
votes
4answers
1k views
Is there any Rails function to check if a partial exists?
When I render a partial which does not exists, I get an Exception. I'd like to check if a partial exists before rendering it and in case it doesn't exist, I'll render something else. I did the ...
7
votes
2answers
685 views
When is a scala partial function not a partial function?
While creating a map of String to partial functions I ran into unexpected behavior. When I create a partial function as a map element it works fine. When I allocate to a val it invokes instead. ...
6
votes
1answer
138 views
Python get arguments for partial functions
I am looking to do something similar to what was asked here Getting list of parameters inside python function, but using partial functions. ie. I need to get the possible arguments for a partial ...
6
votes
2answers
92 views
Rails and partials, is there a more efficent way of writing this…?
I've got a partial in a loop like so...
<% things.each do |thing| %><%= render :partial => "thingy", :locals => { :something => something, :thing => thing } %><% end ...
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
6answers
359 views
How to organise large code files?
I am increasingly aware that my code in any single file can often span hundreds of lines quite easily and although I know the implementation might be sound, it still feels messy and unorganised.
I ...
6
votes
2answers
1k views
Best Practices for using partials in Rails
In keeping with the DRY-principle I try to use partials as soon as I am repeating a particular pattern more than once or twice. As a result, some of my views consist of ten or more different partials. ...
5
votes
6answers
156 views
Unrolling loops using templates in C++ with partial specialization
I'm trying to use templates to unroll a loop in C++ as follows.
#include <iostream>
template< class T, T i >
struct printDown {
static void run(void) {
std::cout << i ...
5
votes
3answers
363 views
Create instance method in metaclass using partial in Python 3
Using metaclasses, I am trying to create an instance method by simplifying an existing instance method. The problem is that partial does not work with instance method. This is a simple example of what ...
5
votes
5answers
7k views
Modifying MVC 3 ViewBag in a partial view does not persist to the _Layout.cshtml
I am using MVC 3 with the Razor view engine. I want to set some values in the ViewBag inside a Partial View and want retrieve those values in my _Layout.cshtml. For example, when you setup a default ...
5
votes
2answers
3k views
Android: How to get a custom view to redraw partially?
I have a custom view that fills my entire screen. (A piano keyboard)
When a user touches the key, it causes invalidate() to be called and the whole keyboard gets redrawn to show the new state with a ...
5
votes
3answers
256 views
Templated class function T: How to find out if T is a pointer?
As a follow-up to this question: I need to decide in a class function like this:
template< typename T > bool Class::Fun <T*> ( T& variable ) {...}
whether T is a pointer or not.
In ...
5
votes
2answers
790 views
Should you only use local variables in a partial?
Using local variables seems advisable in a partial that could be used application-wide to avoid dependencies across the application.
But within a single controller it seems acceptable to reference ...
4
votes
4answers
215 views
Partial application left to right
I started with haskell yesterday and am still completely lost on the shore of this brave new world. Now I have run into the following issue:
Let's assume I have some function that does some magic to ...
4
votes
5answers
401 views
c# mvc model vs viewbag
Suppose you have a list of People A and a list of People B in a page. And these two are seperate classes in L2S, representing two different tables. Therefore, you cannot pass a single model as ...
4
votes
4answers
1k views
MVC3 pass @model to partial view
I have two partial views which are exactly the same, but for the @model.
@model Project.Models.X
@model Project.Models.Y
How could I pass this model type to the view so that I can use the same view ...
4
votes
1answer
169 views
How to do OR search
I want to search for a partial first and last name match - for example in sql
f_name LIKE J% OR l_name LIKE S%
would match John Smith or John Henry or Harry Smith .
I am assuming I may ...
4
votes
2answers
200 views
Partial evaluation/specialization with LLVM-gcc or gcc
I am interestent in (partial) compile-time evaluation for c/c++ (not with template parameters like in c++). Lets consider the following case (taken from [1]):
double mypower(double x, int n) {
int ...
4
votes
2answers
496 views
Force unobstructive syntax without Html.BeginForm / Ajax.BeginForm in partial view
When I put a part of my form in a partial view, all form parts get unobstructive syntax except the form elements in the partial view.
The only way I found how to "apply" the unobstructive syntax, is ...
4
votes
1answer
1k views
Local variable always nil when trying to render partial
I'm getting a really strange issue with a partial when trying to render a collection, I've even tried different approaches.
Here is my partial code (for debugging):
<pre><%= item.inspect ...
4
votes
1answer
100 views
How should I comment partial Python functions?
say I have the following code:
def func(x, y = 1, z = 2):
""" A comment about this function """
return x + y + z
another_func = partial(func, z = 4)
What would be the correct or Pythonic ...
4
votes
4answers
438 views
Problem with jquery #find on partial postback
I have a third party component. It is a calendar control. I have a clientside event on it which fires javascript to show a popup menu. I do everything client side so I can use MVC.
dd
...
4
votes
5answers
10k views
How to render partial.js in rails 3
Using rails3 - I have a project with many tasks. I want to use javascript to build the UI for each task. I figured I could display those tasks on the projects show page by rendering a javascript ...
4
votes
5answers
338 views
(partial apply str) and apply-str in clojure's ->
If I do the following:
user=> (-> ["1" "2"] (partial apply str))
#<core$partial__5034$fn__5040 clojure.core$partial__5034$fn__5040@d4dd758>
...I get a partial function back. However, ...
4
votes
2answers
300 views
Loading a Partial View in ASP.Net MVC using JQuery - which method is preferred?
In a very recent questions I was having problems with this. My code was:
$("#SearchResults").load("/Invoice/InvoiceSearchResults/");
And I was advised to use this instead:
$.ajax({
url: ...
4
votes
1answer
400 views
When is OnValidate called in Linq?
I want to implement this partial method in my Linq table class.
partial void OnValidate(System.Data.Linq.ChangeAction action);
My hope is that is it called right before an insert. Can anyone tell ...
4
votes
4answers
670 views
How to automatically convert VS2003 classes to partial Designer.cs files?
I'm upgrading a project from Visual Studio 2003 to 2008 and wish to automatically generate XXX.Designer.cs files and update the corresponding XXX.cs original one.
Any automatic way to do it?
UPDATE: ...
4
votes
4answers
3k views
Rails AJAX: My partial needs a FormBuilder instance
So I've got a form in my Rails app which uses a custom FormBuilder to give me some custom field tags
<% form_for :staff_member, @staff_member, :builder => MyFormBuilder do |f| %>
[...]
...
3
votes
3answers
51 views
Is it possible to get back the value that matched a partial selector in jQuery?
I've coded a function that works but that is ugly. I'm pretty sure there's a better way to do what I want and it probably turned out very ugly because I'm not really good in javascript :D
I have some ...
3
votes
1answer
92 views
Is it possible to pass Params in render partial?
I am using the jQuery UI slider to dynamically update items on a page. How can I let the controller receive the values from the slider? Is it possible to pass such information through as a local? If ...
3
votes
1answer
109 views
Rails partial in modal (render partial from different model)
I have tried to include a partial into a modal something similar to this Rails Admin
when you click on "create language".
Now as I have not really found out how the code works there, I tried to do a ...
3
votes
2answers
64 views
I'm reading Eloquent Javascript and I am a little confused by this partial function example. Please help explain
function asArray(quasiArray, start) {
var result = [];
for (var i = (start || 0); i < quasiArray.length; i++)
result.push(quasiArray[i]);
return result;
}
function partial(func) {
var ...
3
votes
5answers
129 views
C++: partial function specialization for void not allowed - alternative solution?
I think I understand by now why partial function templates are considered confusing and unnecessary, and are thus not allowed by the C++ standard. I would however appreciate some help with ...
3
votes
1answer
264 views
Taking a partial screenshot on the iPad
I'm trying to take a screenshot on save, but can only do full screen. Is there any way to take a partial screenshot?
Here is a sample. Say I just want to take a screenshot of the section highlighted ...
3
votes
1answer
46 views
Can we peek out partially inferred typing info. from Ocaml toplevel/compiler for a program that does not compile?
I would like to know, in Ocaml, whether a partial typing info. can be drawn by some existed functionality of toplevel/compiler, for a program that does not compile? Let me explain.
In Ocaml, it's ...
3
votes
3answers
225 views
Partial class doesn't match to auto-generated class part
I've created entity model for my DB classes, here is one of them:
[EdmEntityTypeAttribute(NamespaceName="SotiModel", Name="SKUPrice")]
[Serializable()]
[DataContractAttribute(IsReference=true)]
...
3
votes
1answer
487 views
Load Partial Template Ajax - With Grails
I am creating a grails webapp, and have the main index gsp, and there are several common components that will be common across most of the pages on the site that I am using partial templates for.
...
3
votes
3answers
1k views
rails fields_for render partial with multiple locals producing undefined variable
All,
I am experiencing a problem with a standard fields_for setup. In my "_form" partial I have:
<div class="comment_list">
<%= f.fields_for :comments do |cf| %>
<%= render ...
3
votes
0answers
182 views
Serving files through controllers with partial download support
I need to serve files through grails, only users with permission have access, so I cant serve them with a static link to a container. The system is able to stream binary files to the client without ...