view

Can I filter on request.user when using Django generic views?

I want to do something like this (from my urls.py), but I don't know if it's possible to get the user making the request: url(r'^jobs/(page(?P<page>[0-9]+)/)?$', object_list, {'queryset': Job.objects.filter(user=request.user), 'template_name': 'shootmpi/molecule_list.html'}, name='user_jobs'), ...

Animation With View

It's possible to set an animation with multiple view? usually i set up an animation with a code like this: NSArray * imageArray = [[NSArray alloc] initWithObjects: [UIImage imageNamed:@"1.png"], [UIImage imageNamed:@"2.png"], [UIImage imageNamed:@"3.png"], [UIImage imageNamed:@"4.png"], [UIImage imageNamed:@"5.png"...

How to disable a view script in a controller - Zend Framework

Hi, I am playing with zend framework's MVC. One thing I found out is that Zend Framework tries to include a view script whenever a controller is called. I can disable it in bootstrap with the following code. $frontController->setParam('noViewRenderer',true); However, I have to initialize Zend_View class in a controller method then ren...

How to rebuild view in SQL Server 2008

There is a view in my DB that someone defined with a * from one table. I just added a new column to that table and I want the view to reflect the new column. Besides re-executing the view creation script, is there another way to rebuild the view? I am looking for something similar to how sp_recompile will recompile a stored procedure ...

List view control displaying distorted images

Hi, I have a problem with the ListView control in a windows forms application. Even if I create a thumbnail image or resize the real one I get distorted images in the list view. The image looks like when you zoom in an image very much. I first thought that the GetThumbnailImage is couseing this but I used a resize code I found here an...

Delphi: Good pattern/strategy for view <-> model synchronization

There's a lot of talk about model-view-controller, model-view-viewmodel, model-view-presenter and so on these days. What do you see as the best pattern for use with delphi and non-data aware components? How do you usually implement it? ...

Multiple Base Table View

how can insert data into a multiple base table view without using a stored procedure ...

How to change EMS SQL Manager view from 'like Delphi' to 'like MS Office'?

The installer proposed me to choose more convinient view: like in Delphi or like in MS Office. I chose Delphi, but now I want to change it. And I cant find how to do it. Is is possible? ...

Any issues with join hints in a SQL Server 2000 view?

I have some ad-hoc reporting users hitting some SQL Server views. Occasionally the read locks taken by these users for particularly lengthy queries causes trouble elsewhere in the system. I am considering adding some strategic with(nolock) hints to the views but wanted to know if there are any gotchas associated with hints in views. P...

Request View and View Updates from Another Application

I am looking to create an app with plugin functionality. What I want is to allow a separate plugin "app" to provide me with the view, and take care of the updating of the view that I will use in my list adapter. Essentially, I want the separate app to take care of the bindView and newView methods of my adapter. I am looking at RemoteVie...

Tree View in c# with recursive

hi there i have table in DB with 3 column => ParentId , Id , Text i wanna make Tree in C# by the Records that we have saved in this table i dont know how should i write my recursive method in c# please help me thanks ...

updating iPhone view without user input

Writing a 4-player iPhone game app with programmable mix of human/autoComputer players. After each player turn the "game view" should update. I have been using "setNeedsDisplay" to update this view. However, this view updates only when my "turn processing" code is "finished" AND it awaits a human player's touch to trigger this code ag...

MVC (PHP): Do Controllers/Actions map to each and every request?

I've been getting to grips with MVC (in PHP) by way of Zend. My understanding of the Zend Framework is that each type of user request maps to a specific controller (which in turn may or may not map to a model), and each action maps to a view. I've noticed the same pattern in Codeigniter and Kohana, and to some extent also in Symfony. Eff...

Multiple Views in one Window

Hi everyone, I'm writing a view based app, but I'm a bit confused about loading my views. I'd like to have four different views loaded at the same time in the same window. I can't seem to figure out how to do this. I'd prefer to do everything programatically rather than with the interface builder if possible. My 4 views are: a UI...

Vitual Studio Design view working asp.net with CSS

I using an external CSS to control the display of my controls. and It looks messy when I am viewing the page in th Design View of VS2008. So whenever i change a value in my CSS, instead of examining it in design view, i am forced to run the web page, launch my browser just in order to view the changes I made. ...

flex 3 css corrupt design view

when I apply a css using mx:style tag it corrupts the design view this answer settings doesn't change anything wether I checked or not "render skins when opening a file" is there a way to tell flex to ignore completly css in design view, or indeed let flex shows the dcss properly instead of this blue gear icon placeholder everywhere. ...

How to resolve "Something Went wrong" error in ruby on rails ?

Hi, I am using Ubuntu 9.04 I just installed ruby and rails in my system and the webrick server seems to have been installed without any errors. I created a "demo" rails app and created a controller 'say'. Then i created a view template 'hello.rhtml' I started the server and entered http://localhost:3000/say/hello in my browser. But t...

How to render the Mvc Mobile View in a iPhone?

Hi I got to a stage that my Mvc mobile view (iPhone) is rendering in a web browser. Eg. Home Mobile iPhone Index.aspx My question is how can I get this View into an iPhone type simulator? I don't know hot to get the mobile view to a nice looking simulator. Any ideas appreciated. ...

ASP.NET MVC Create view for object with first child object

I have a 'Person' object that has a 'FirstName' and 'LastName' property. The 'Person' also has a 1-n relation with a 'Phone' object. The 'Phone' object has a 'Number' property. So a person can have multiple phone numbers. On the 'PersonController' I have a 'Create' action that loads a strongly-typed view to show a form where I can creat...

How to make a smooth image rotation in Android?

I'm using a RotateAnimation to rotate an image that I'm using as a custom cyclical spinner in Android. Here's my rotate_indefinitely.xml file, which I placed in res/anim/: <?xml version="1.0" encoding="UTF-8"?> <rotate xmlns:android="http://schemas.android.com/apk/res/android" android:fromDegrees="0" android:toDegrees="360"...