mvc

Java MVC - How to divide a done text game into MVC?

Been sitting here for hours now trying to figure this out, so a bit sympathy for this large question. :) The Goal: I simply want to divide my done code into MVC (Model View Controller) parts. I have the game logics done and text based - the code works fine. The Problem: Well, I want to implement this code into MVC, but where do explai...

Zend Framework: View variable in layout script is always null

I set a view variable in someAction function like this: $this->view->type = "some type"; When I access this variable inside layout script like this: <?php echo $this->type ?> it prints nothing. What's wrong? My application.ini settings related to layout resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts/" resource...

Why can't I use resources as ErrorMessage with DataAnnotations?

Why can't I do like this? [Required(ErrorMessage = "*")] [RegularExpression("^[a-zA-Z0-9_]*$", ErrorMessage = Resources.RegistrationModel.UsernameError)] public string Username { get; set; } What is the error message telling me? An attribute argument must be a constant expression , typeof expression or array creation express...

new operator in DllMain of MFC Extension Dll

Hi, Dll best practices document from Microsoft available Here recommends avoiding use of memory management function from the dynamic C Run-Time (CRT) within DllMain. But DllMain function of MFC Extension DLL is dynamically allocating the memory for CDynLinkLibrary in the code snippet available at MSDN "http://msdn.microsoft.com/en-us/li...

Setting html attribute that is reserved keyword in Html.CheckBoxFor in ASP.NET MVC

Hi, I am using the HtmlHelper to create a checkbox in my view like so: <%= Html.CheckBoxFor(model => model.SeatOnly, new { checked = "checked" })%> However, an error is being thrown as checked is a reserved keyword. I have found a couple of people saying that you must use the 'reserved word prefix' and simply put an uderscore in front ...

How to have 2 pager in jqgrid one at top and one at bottom?

Here is my code $(document).ready(function () { $('#jqgProducts').jqGrid({ url: '/Home/GridSampleData/', // url from wich data should be requested datatype: 'json', // type of data mtype: 'GET', // url access method type colNames: ['userid', 'username', 'email', 'cont...

OBject access from different functions in VC++

Hi, I have 3 function in my class B. These three function have to access member function of other class A. I did this by creating object of class A in class B constructor and tried to access that object in functions of class B. But its showing error. How can i assess the same object in these three functions. Where i have to create obj...

Set title to a div in mvc

I have the following code, but it`s giving me errors <div id="ChangePassword" title="Change password for "&<%=item.Name%>> <%Html.RenderPartial("PasswordDetails", Model); %> </div> I need to display the name in the title. How can I do that? I actually want to dipslay the name of the employee in the div when the link is...

zoom_changed only triggers once in google maps api version 3 using MVC

Hi, I'm trying to use the MVC objects in google maps version 3. What I can't seem to figure out is why my zoom_changed method is only invoked once. When I first load the map the zoom_changed method is invoked. But not when I zoom on the map. function MarkerWidget (options) { this.setValues(options); this.set('zoom', this.map.z...

MVC Partial View to Call Display Pop-up window using jquery

Hi I have a index page the renders objects from my database as a treeview, each item has a link href="/MessageGroupType/Edit/1002 that makes an Ajax call to display a partial view in a DIV. Within the partial view there is a delete button which calls my controller to delete the item. However, i do a check to make sure the item can b...

POST > Redirect > GET Pattern with multiple forms

I am using the ASP.NET MVC framework, and have a page which currently posts back to itself, validates, then redirects if necessary as per best practice recommendations. I now wish to add a feature that involves the user entering an 'offer code'. This code, if valid, will filter the options in the primary form on the page, which will the...

Designing router & controllers in RESTful architecture

Simple examples of controllers in a RESTful architecture suggest four actions per controller -- index, create, update, delete -- corresponding with the GET, POST, PUT, and DELETE. But beyond that I still find a dozen little decisions: Do you have a different controller for resource collections (example.com/things) than you do for an i...

Sample enterprise application for ASP.NET MVC?

I understand there are a number of small applications built on MVC. Is there an enterprise application sample that is standardized and uses best practices? ...

SQL DB schema design in context of MVC model development tips/tricks

I'm looking to replace our current model (written entirely in Tcl (please don't even start)) with a new model based around an SQL (sqlite) database, and I'm looking for books/articles giving advice on how one goes about designing a DB schema as well as the model interface around it. I've been reading questions about updating bad DB sche...

Custom editor in QAbstractTableModel

Does anyone have an example of using a QWidget as an editor in a QAbstractTableModel? I have a column which when edited should create a QCombobox with the list of choices. The docs seem to suggest I need to write a QAbstractItemDelegate and a custom paint function but that seems overkill to simply pop-up a standard QCombobox in Qt::Edit...

Does the traditional use of the controller in MVC lead to a violation of the Single Responsibility Principle?

Wikipedia describes the Single Responsibility Principle this way: The Single Responsibility Principle states that every object should have a single responsibility, and that responsibility should be entirely encapsulated by the class. All its services should be narrowly aligned with that responsibility. The traditional use of the co...

From Java GUI to Java Web

I've been doing quite large application recently with Java - Swing. Now I'd like to move to web. Basically - I am not Microsoft guy, Java is fine with me. I've checked some basics of Java EE framework and decided that my choice will be Spring. I already am familiar with JDBC. Learning Spring is one thing, but working just with GUIs (C++ ...

ASP.NET MVC: MetaTags; setting methodology, best practices

When I created a default MVC application in VS2K10, the master view (Site.Master) had a ContentPlaceHolder for the <title> tag. Is there a better way to set metatags like title and description than using a ContentPlaceHolder in the master and setting that ContentPlaceHolder's value in each view? Should metatag data be part of my View ...

MVC Design Question

On a MVC 2 website what I want to do is get a list of products / CategoryId. From that list, create a list of distinct CategoryId's. Then randomly pick a categoryId from the second list and use it to get all the products for that categoryId. I then want to store that CategoryId so that I don't display those products on the next run....

ASP.NET MVC Routes

Can I see one example that would make this piece of code compile? public IEnumerable<RouteBase> Routes { get { return new List<Route>() { new Route(...) } } } What would you do if RouteCollection.MapRoute() didn't exist? I'm trying to put my Contr...