User mattruma - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T20:03:41Z http://stackoverflow.com/feeds/user/1768 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1935551/inspirations-for-software-ui/1935590#1935590 0 Answer by mattruma for Inspirations for Software UI mattruma 2009-12-20T11:39:46Z 2009-12-20T11:39:46Z <p>I would take a look at <a href="http://quince.infragistics.com/" rel="nofollow">http://quince.infragistics.com/</a>, while not complete applications, it does show you some best practices/design patterns for both Windows and Web applications.</p> <p>I'd also take a look at some of the Windows Forms component companies, DevExpress, Telerik and Infragistics. You can learn a lot from the look and feel of their components.</p> http://stackoverflow.com/questions/101779/the-action-or-event-has-been-blocked-by-disabled-mode 1 The action or event has been blocked by Disabled Mode mattruma 2008-09-19T13:25:58Z 2009-12-11T16:38:44Z <p>I am using Microsoft Access 2007 to move and massage some data between two SQL Servers. Yesterday everything was working correctly, I was able to run queries, update data, and delete data.</p> <p>Today I opened up the Access database to finish my data migration and am now receiving the following message when I try to run some update queries:</p> <blockquote> <p>The action or event has been blocked by Disabled Mode.</p> </blockquote> <p>Any ideas what this is talking about?</p> http://stackoverflow.com/questions/1852602/programmatically-load-a-linq2sql-partial-class 0 Programmatically load a LINQ2SQL partial class mattruma 2009-12-05T16:16:28Z 2009-12-05T17:04:21Z <p>I am working on project that allows a user to add Time to a Task. On the Task I have a field for EstimatedDuration, and my thoughts are I can get ActualDuration from the Time added to the Task. </p> <p>I have a LINQ2SQL class for the Task, as well as and additional Task class (using partials). </p> <p>I have the following for my query so far:</p> <pre><code> public IQueryable&lt;Task&gt; GetTasks(TaskCriteria criteria) { // set option to eager load child object(s) var opts = new System.Data.Linq.DataLoadOptions(); opts.LoadWith&lt;Task&gt;(row =&gt; row.Project); opts.LoadWith&lt;Task&gt;(row =&gt; row.AssignedToUser); opts.LoadWith&lt;Task&gt;(row =&gt; row.Customer); opts.LoadWith&lt;Task&gt;(row =&gt; row.Stage); db.LoadOptions = opts; IQueryable&lt;Task&gt; query = db.Tasks; if (criteria.ProjectId.HasValue()) query = query.Where(row =&gt; row.ProjectId == criteria.ProjectId); if (criteria.StageId.HasValue()) query = query.Where(row =&gt; row.StageId == criteria.StageId); if (criteria.Status.HasValue) query = query.Where(row =&gt; row.Status == (int)criteria.Status); var result = query.Select(row =&gt; row); return result; } </code></pre> <p>What would be the best way to get at the ActualDuration, which is just a sum of the Units in the TaskTime table?</p> http://stackoverflow.com/questions/1795926/cannot-delete-a-sql-job/1795941#1795941 0 Answer by mattruma for Cannot Delete a SQL job. mattruma 2009-11-25T10:15:02Z 2009-11-25T10:15:02Z <p>Have your tried setting the allow editing of system tables, and going directly into the system table that holds the job information and tried deleting the row from there? </p> <p>Make sure to be <strong>extra</strong> careful when doing this, not recommended, but sometimes direct editing to the system tables needs to be done.</p> http://stackoverflow.com/questions/1795763/gridview-export-to-csv-issue/1795859#1795859 0 Answer by mattruma for Gridview: Export to csv issue mattruma 2009-11-25T09:59:26Z 2009-11-25T09:59:26Z <p>Make sure you are rebinding your data BEFORE you do your export. I ran into this same issue a while back on a project, as we had VIEWSTATE turned off on the GridView, so on the postback we were trying to export the data, prior to the grid being populated with data.</p> http://stackoverflow.com/questions/1795812/asp-net-mvc-handle-multiple-checkboxes/1795845#1795845 2 Answer by mattruma for ASP.Net MVC - Handle Multiple Checkboxes mattruma 2009-11-25T09:55:38Z 2009-11-25T09:55:38Z <p>Here are some snippets of code that we use to assign members to a project, hopefully this helps you out!</p> <p>In the view we have:</p> <pre><code>&lt;p&gt; &lt;label&gt; Select project members:&lt;/label&gt; &lt;ul&gt; &lt;% foreach (var user in this.Model.Users) { %&gt; &lt;li&gt; &lt;%= this.Html.CheckBox("Member" + user.UserId, this.Model.Project.IsUserInMembers(user.UserId)) %&gt;&lt;label for="Member&lt;%= user.UserId %&gt;" class="inline"&gt;&lt;%= user.Name%&gt;&lt;/label&gt;&lt;/li&gt; &lt;% } %&gt;&lt;/ul&gt; &lt;/p&gt; </code></pre> <p>In the controller we have:</p> <pre><code>// update project members foreach (var key in collection.Keys) { if (key.ToString().StartsWith("Member")) { int userId = int.Parse(key.ToString().Replace("Member", "")); if (collection[key.ToString()].Contains("true")) this.ProjectRepository.AddMemberToProject(id, userId); else this.ProjectRepository.DeleteMemberFromProject(id, userId); } } </code></pre> <p>The main thing to remember when working with the Html Checkbox Helper is to use contains() to determine true or false.</p> http://stackoverflow.com/questions/1776060/how-to-make-visual-studio-copy-dll-to-output-directory/1776071#1776071 2 Answer by mattruma for how to make visual studio copy dll to output directory? mattruma 2009-11-21T17:12:52Z 2009-11-21T17:12:52Z <p>Set Copy Local to True under the properties for the referenced assembly.</p> http://stackoverflow.com/questions/1770691/issues-with-pagination-in-asp-net-mvc 0 Issues with pagination in ASP.NET MVC mattruma 2009-11-20T14:15:18Z 2009-11-20T15:14:58Z <p>I am trying to implementation the same pagination that is used in the NerdDinner ASP.NET. I am receiving the following error in my view, whenever the pagination starts to kick in.</p> <blockquote> <p>"A route named 'Index' could not be found in the route collection."</p> </blockquote> <p>The error is happening on Line 64.</p> <pre><code>Line 62: &lt;% if (this.Model.HasNextPage) Line 63: { %&gt; Line 64: &lt;%= this.Html.RouteLink("Next Page &gt;&gt;&gt;", "Index", new { page = (this.Model.PageIndex + 1) })%&gt; Line 65: &lt;% } %&gt; Line 66: &lt;/div&gt; </code></pre> <p>My controller code is:</p> <pre><code>[Authorize] public ActionResult Index(int? page) { const int pageSize = 25; var topics = this.TopicRepository.FindAllTopics(); var paginatedTopics = new PaginatedList&lt;Topic&gt;(topics, page ?? 0, pageSize); return this.View(paginatedTopics); } </code></pre> <p>My view code is ...</p> <pre><code>&lt;%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage&lt;CreativeLogic.Sauron.WebMvc.Helpers.PaginatedList&lt;CreativeLogic.Sauron.WebMvc.Models.Topic&gt;&gt;" %&gt; &lt;!-- Code to display the list here --&gt; &lt;div class="pagination"&gt; &lt;% if (this.Model.HasPreviousPage) { %&gt; &lt;%= this.Html.RouteLink("&lt;&lt;&lt; Previous Page", "Index", new { page = (this.Model.PageIndex - 1) }) %&gt; &lt;% } %&gt; &lt;% if (this.Model.HasNextPage) { %&gt; &lt;%= this.Html.RouteLink("Next Page &gt;&gt;&gt;", "Index", new { page = (this.Model.PageIndex + 1) })%&gt; &lt;% } %&gt; &lt;/div&gt; </code></pre> <p>This is my first attempt at doing the pagination in ASP.NET MVC ... if there is a better way, please let me know, otherwise, where am I going wrong here?</p> <p>Thanks much!</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/29295#29295 47 Answer by mattruma for What is the single most influential book every programmer should read? mattruma 2008-08-27T01:12:55Z 2009-11-19T16:45:51Z <h2><a href="http://rads.stackoverflow.com/amzn/click/097451408X" rel="nofollow">Practices of an Agile Developer</a> </h2> <p>Working in the Real World.</p> <p><img src="http://ecx.images-amazon.com/images/I/41lyydC4MnL.%5FSL500%5FAA240%5F.jpg" alt="alt text"></p> http://stackoverflow.com/questions/1737385/jquery-ajax-post-not-calling-method-in-my-controller 0 jQuery ajax post not calling method in my controller mattruma 2009-11-15T12:09:35Z 2009-11-15T19:52:53Z <p>I have a list of tasks that I allow a user to sort, currently I am working on the dragging/dropping from one container to the other. </p> <p>While <strong>the dragging/dropping works</strong>, I can't get the jQuery post to fire. Not sure what's going on here.</p> <p>Here is what I am currently working with for my jQuery:</p> <pre><code>&lt;script type="text/javascript"&gt; $(function() { $(".sortable").sortable({ connectWith: '.connectedSortable', cursor: 'move', items: '.queueItem', receive: function(event, ui) { //Extract column num from current div id var stageId = $(this).attr("id").replace("stage", ""); var taskId = $(ui.item).attr("id").replace("task", ""); $.ajax({ url: '/Task/EditStage', type: 'POST', data: { 'taskId': taskId, 'stageId': stageId } }); } }).disableSelection(); }); &lt;/script&gt; </code></pre> <p>My controller action methods looks like:</p> <pre><code> [AcceptVerbs(HttpVerbs.Post), Authorize] public ActionResult EditStage() { Task task = this.TaskRepository.GetTask( int.Parse(this.Request.QueryString["taskId"])); Stage stage = this.StageRepository.GetStage( this.Request.QueryString["stageId"]); task.StageId = stage.StageId; this.TaskCommentRepository.Save(); return this.Content(string.Format("The stage for Task {0} has been changed to {1}", task.TaskId, stage.Name)); } </code></pre> <p>The user is authorized, just curious as to what I am overlooking? Going forward, how can I test this to see what the hang-up is?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1730656/user-jquery-to-drag-a-div-and-drop-in-a-td-and-have-the-div-snap-into-place 0 User jQuery to drag a DIV and drop in a TD ... and have the DIV "snap" into place mattruma 2009-11-13T17:14:20Z 2009-11-15T12:18:14Z <p>I am finishing up a rewrite of task management system, and am in the process of adding drag and drop capabilities.</p> <p><img src="http://lh3.ggpht.com/%5FMwlyfvVOvjY/Sv2SFbN0IPI/AAAAAAAAAJA/BpxTgdJbZ6U/s912/Queue.png" alt="alt text"></p> <p>I want the user to be able to drag a task DIV from one column (TD) and drop it in another column (TD). I have this working correctly, save for some minor formatting issues. I have the TD with a class called droppable that accepts draggable classes. What I would like to happen is actually remove the task DIV from the current TD and append it to the dropped on TD. </p> <p>Here is my script:</p> <pre><code>&lt;script type="text/javascript"&gt; $(function() { $(".draggable").draggable({ cursor: 'move', cancel: 'a', revert: 'invalid', snap: 'true' }); }); $(function() { $(".droppable").droppable({ accept: '.draggable', hoverClass: 'droppable-hover', drop: function(event, ui) { } }); }); &lt;/script&gt; </code></pre> <p>Here is my Html:</p> <pre><code>&lt;h3&gt; My Queue&lt;/h3&gt; &lt;table style="width: 100%;" class="queue"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td style="width: 14%; vertical-align:bottom ;" class="droppable" id="StagePG"&gt; &lt;/td&gt; &lt;td style="width: 14%; vertical-align:bottom ;" class="droppable" id="StageRY"&gt; &lt;/td&gt; &lt;td style="width: 14%; vertical-align:bottom ;" class="droppable" id="StagePR"&gt; &lt;div class="queue-item draggable" title="Task description goes here."&gt; &lt;em&gt;Customer&lt;/em&gt; &lt;strong&gt;Project&lt;/strong&gt; &lt;h4&gt;&lt;a href="/Sauron/Task/Details/100001"&gt;100001&lt;/a&gt;&lt;/h4&gt; &lt;/div&gt; &lt;div class="queue-item draggable" title="Task description goes here."&gt; &lt;em&gt;Customer&lt;/em&gt; &lt;strong&gt;Project&lt;/strong&gt; &lt;h4&gt;&lt;a href="/Sauron/Task/Details/100002"&gt;100002&lt;/a&gt;&lt;/h4&gt; &lt;/div&gt; &lt;/td&gt; &lt;td style="width: 14%; vertical-align:bottom ;" class="droppable" id="StageRT"&gt; &lt;/td&gt; &lt;td style="width: 14%; vertical-align:bottom ;" class="droppable" id="StageTE"&gt; &lt;/td&gt; &lt;td style="width: 14%; vertical-align:bottom ;" class="droppable" id="StageRL"&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;tfoot&gt; &lt;tr&gt; &lt;td style="width: 14%; text-align: center;"&gt; Pending (0) &lt;/td&gt; &lt;td style="width: 14%; text-align: center;"&gt; Ready (0) &lt;/td&gt; &lt;td style="width: 14%; text-align: center;"&gt; In Progress (2) &lt;/td&gt; &lt;td style="width: 14%; text-align: center;"&gt; Ready for Testing (0) &lt;/td&gt; &lt;td style="width: 14%; text-align: center;"&gt; Testing (0) &lt;/td&gt; &lt;td style="width: 14%; text-align: center;"&gt; Ready for Release (0) &lt;/td&gt; &lt;/tr&gt; &lt;/tfoot&gt; &lt;/table&gt; </code></pre> <p>Struggling with the drop event and how to implement this. Any help is appreciated!</p> http://stackoverflow.com/questions/1730656/user-jquery-to-drag-a-div-and-drop-in-a-td-and-have-the-div-snap-into-place/1737406#1737406 0 Answer by mattruma for User jQuery to drag a DIV and drop in a TD ... and have the DIV "snap" into place mattruma 2009-11-15T12:18:14Z 2009-11-15T12:18:14Z <p>As @David Lively suggested we went with the sortable route ... did exactly what I needed it to do!</p> http://stackoverflow.com/questions/824677/how-to-search-a-varchar-field-using-linq-to-build-a-list-of-recommendations 1 How to search a varchar field, using LINQ, to build a list of recommendations mattruma 2009-05-05T12:35:49Z 2009-11-15T12:16:04Z <p>I am trying to construct a LINQ query, with expression trees, to do the following:</p> <p>I have a field in my ItemCode table called Labels, an example of the data contained in this field is "lamps lighting chandelier".</p> <p>I want to allow the user to type in some text, i.e. "Red Lamp", and be able to search the Labels field, of the ItemCode, table where the text contains "Red" or "Lamp".</p> <p>I am trying to recommend selections to the user, and this, while basic, is a good first step ... just need some help constructing the query.</p> <p>I am using CSLA as my framework, here is an example of the code I currently have:</p> <pre><code>IQueryable&lt;Data.ItemCode&gt; query = ctx.DataContext.ItemCodes; // // ItemCodeId // if (criteria.Name != null) query = query.Where(row =&gt; row.ItemCodeId.Contains(criteria.ItemCodeId)); // // Name // if (criteria.Name != null) query = query.Where(row =&gt; row.Name.Contains(criteria.Name)); var data = query.Select(row =&gt; ItemCodeInfo.FetchItemCodeInfo(row)); this.AddRange(data); </code></pre> <p>Thanks in advance!</p> http://stackoverflow.com/questions/824677/how-to-search-a-varchar-field-using-linq-to-build-a-list-of-recommendations/1737399#1737399 0 Answer by mattruma for How to search a varchar field, using LINQ, to build a list of recommendations mattruma 2009-11-15T12:16:04Z 2009-11-15T12:16:04Z <p>We have decided you go the stored procedure route for this advanced functionality. Thanks for everyone's input!</p> http://stackoverflow.com/questions/1725170/where-to-put-advanced-business-logic-in-asp-net-mvc-linq2sql-project 1 Where to put *advanced* business logic in ASP.NET MVC/Linq2Sql project? mattruma 2009-11-12T20:33:01Z 2009-11-13T00:34:00Z <p>I am finishing up a rewrite of a project management tool using ASP.NET MVC, LINQ2QL and the Repository design pattern. Pretty much following the NerdDinner example. </p> <p>I have a class called Task that has a child list of TaskStages. For sake of this example the Stages are Ready, Under Development and Completed. I keep track of the current Stage on the Task, but everytime the Stage changes I want to write a historical record to the Task Stage table.</p> <p>I'm struggling on where to put this functionality and maintain testability. Does it go in the Controller? Repository? or the partial class?</p> <p>If this is a design issue, please let me know!</p> http://stackoverflow.com/questions/1705408/problems-with-my-jquery-items-are-disappearing 0 Problems with my jQuery ... items are disappearing ... mattruma 2009-11-10T03:05:55Z 2009-11-10T03:18:50Z <p>I have the following code:</p> <pre><code>&lt;div id="comments"&gt; &lt;h2&gt; Comments&lt;/h2&gt; &lt;div id="comment"&gt; &lt;/div&gt; &lt;% foreach (var comment in this.Model.Topic.TopicComments.OrderBy(tc =&gt; tc.CreatedDate).Reverse()) { %&gt; &lt;% this.Html.RenderPartial("TopicComment", comment); %&gt; &lt;% } %&gt; &lt;fieldset&gt; &lt;% using (Ajax.BeginForm("AddComment", "Topic", new { id = this.Model.Topic.TopicId }, new AjaxOptions { UpdateTargetId = "comment", OnSuccess = "animateTopicComment" })) { %&gt; &lt;%= Html.TextArea("Body", string.Empty, new { @class = "wmd-ignore" })%&gt; &lt;input type="submit" value="Add Comment" /&gt; &lt;% } %&gt; &lt;/fieldset&gt; &lt;/div&gt; &lt;script type="text/javascript"&gt; function animateTopicComment() { $("#comment").fadeOut(0, function() { $('#comment').fadeIn("slow"); }); $("#Body").val(""); } &lt;/script&gt; </code></pre> <p>What I am trying to do is whenever the user adds a comment I would like the comment to fade in. This almost works ... save for the following issue:</p> <p>If I keep adding comments, whatever was in the comment DIV is overridden. If I don't use any of the jQuery animations the new comments appear correctly.</p> http://stackoverflow.com/questions/1703081/organizing-classes-using-the-repository-design-pattern 3 Organizing classes using the repository design pattern mattruma 2009-11-09T19:10:11Z 2009-11-09T19:27:15Z <p>I have started upgrading one of our internal software applications, written in ASP.NET Web Forms, and moving to ASP.NET MVC. </p> <p>I am trying to leverage the Repository design pattern for my classes, which leads me to my question about how much to put into a repository.</p> <p>I have the following entities:</p> <ul> <li>Topic</li> <li>Topic Comments (Topic can have multiple comments)</li> <li>Topic Revisions (Any time a Topic is edited, a revision is recorded)</li> <li>Topic Subscriptions (Allows users to subscribe to changes for a particular Topic)</li> </ul> <p>I currently have an interface for ITopicRepository and a class called TopicRepository that handles all the basic CRUD for a Topic. I am now preparing to add code for the Comments, Revisions and Subscriptions. </p> <p>I am wondering does ALL this go into the TopicRepository OR do I create a repository for each of the entities, for example, TopicRevisionRepository and so on.</p> http://stackoverflow.com/questions/1703095/design-pattern-for-managing-queues-and-stacks 0 Design pattern for managing queues and stacks? mattruma 2009-11-09T19:12:15Z 2009-11-09T19:22:20Z <p>Is there a design pattern for managing a queue or a stack? For example, we are looking to manage a list of tasks. These tasks will be added to a group queue, users will then be able to pull off the queue and add them to their personal queue.</p> http://stackoverflow.com/questions/1698389/redirect-a-user-to-a-specific-view-when-authorization-fails 3 Redirect a user to a specific view when authorization fails? mattruma 2009-11-08T23:47:59Z 2009-11-09T00:56:51Z <p>I have the following code:</p> <pre><code> [AcceptVerbs(HttpVerbs.Post), Authorize(Roles = RoleKeys.Administrators)] public ActionResult Edit(int id, FormCollection collection) { User user = userRepository.GetUser(id); try { this.UpdateModel(user); userRepository.Save(); return this.RedirectToAction("Details", new { id = user.UserId }); } catch { this.ModelState.AddModelErrors(user.GetRuleViolations()); return View(new UserFormViewModel(user)); } } </code></pre> <p>If the currently logged in user is <strong>not</strong> in the Administrators role, it kicks them back to the login screen. The user is <strong>already</strong> logged in, they are just not authorize to perform the requested action. </p> <p>Is there any way to have them redirected to a specific view, for example, AccessDenied?</p> http://stackoverflow.com/questions/1692854/is-there-an-easy-way-to-remove-all-default-values-for-a-sql-database 3 Is there an easy way to remove all default values for a SQL database? mattruma 2009-11-07T12:19:55Z 2009-11-07T12:34:04Z <p>I'd like to remove all default values that have been setup in a particular database, is there a script that I can run to do this for all tables in database? Could be a bit time consuming without ... any help would be appreciated!</p> http://stackoverflow.com/questions/1477233/how-to-append-dynamically-created-windows-forms-controls 1 How to append dynamically created Windows Forms controls? mattruma 2009-09-25T13:17:03Z 2009-11-04T17:39:28Z <p>While I can easily accomplish in ASP.NET using AddAt(), I am trying to do the same thing in Windows Forms.</p> <p>I have a panel, and while I can do a pnlMyPanel.Controls.Add(ctl) ... it always inserts it in the 0 position, when I would rather have it appended to the end, or pnlMyPanel.Controls.Count.</p> <p>Am I overlooking a method or am I going to have to do something else? </p> http://stackoverflow.com/questions/1656884/ui-for-creating-invoices/1656989#1656989 0 Answer by mattruma for UI for creating invoices mattruma 2009-11-01T11:57:52Z 2009-11-01T11:57:52Z <p>I would take a look at what is already out there, especially for invoices, and see how they are doing it. </p> <p>Not sure how big your company is, but it never hurts to take advantage of the large company applications and user interfaces, the pour thousands/millions of dollars into user interface design and testing.</p> <p>I would take a look at any of the following (most offer a free trial, or just try searching for screenshots):</p> <ul> <li><a href="http://www.freshbooks.com" rel="nofollow">www.freshbooks.com</a></li> <li><a href="http://www.invoicera.com" rel="nofollow">www.invoicera.com</a></li> <li><a href="http://www.getcashboard.com" rel="nofollow">www.getcashboard.com</a></li> <li><a href="http://www.simplifythis.com" rel="nofollow">www.simplifythis.com</a></li> </ul> <p>Just some ideas ... hope this helps!</p> http://stackoverflow.com/questions/1607005/recommendations-for-handling-list-selection-of-data-in-a-web-application 0 Recommendations for handling list selection of data in a web application? mattruma 2009-10-22T12:56:29Z 2009-10-28T21:23:14Z <p>I am struggling with what the better practices or recommended ui design patterns are for making selections from a list of data, more specifically, key/value data. </p> <p>My questions are:</p> <ul> <li>When should I use a drop down? <ul> <li>When should you employ a list of radio buttons verses a drop down?</li> </ul></li> <li>When should I use a list box? <ul> <li>If you do allow for multiple selection, is it better to use a list of check boxes?</li> </ul></li> <li>What is the best way to handle selection from a large list of data? <ul> <li>Pop-up windows that allow filtering/selecting the data</li> <li>Autocomplete text boxes (though not many support key/value)</li> </ul></li> <li>Are there any good websites that explain ui pattern for data list selection?</li> </ul> <p>When selecting from a large list of data, how are you handling this? I see lots of guidance for autocompletion using just values, but no keys. </p> <p>I realized this may be subjective, but I <strong>really</strong> need some guidance on the better ways to handle this type of data entry.</p> <p>For what it's worth, I am developing my application in C# and ASP.NET Web Forms.</p> <p><strong>Update</strong></p> <p>Here is an example of what the data might look like for a large list, for selecting customers:</p> <pre><code>Id Name Address Active ------------------------------------------------------------------- 1 XYZ Company 1234 Main St., Some City, Some State Y 2 ABC Company 1234 Main St., Some City, Some State N 3 RST Company 1234 Main St., Some City, Some State Y </code></pre> <p>Sometimes my customer wants to see more information, than just the value field, in this case Name (this is what would be displayed in the related text box).</p> http://stackoverflow.com/questions/1637723/linq-query-add-where-dynamically/1637736#1637736 3 Answer by mattruma for LinQ query - Add Where dynamically mattruma 2009-10-28T14:46:12Z 2009-10-28T14:46:12Z <p>Here's some example code for how we do it ...</p> <pre><code> private void DataPortal_Fetch(GoalCriteria criteria) { using (var ctx = ContextManager&lt;Data.ExodusDataContext&gt; .GetManager(Database.ApplicationConnection, false)) { this.RaiseListChangedEvents = false; this.IsReadOnly = false; // set option to eager load child object(s) var opts = new System.Data.Linq.DataLoadOptions(); opts.LoadWith&lt;Data.Goal&gt;(row =&gt; row.Contact); opts.LoadWith&lt;Data.Goal&gt;(row =&gt; row.Sales); opts.LoadWith&lt;Data.Goal&gt;(row =&gt; row.Customer); ctx.DataContext.LoadOptions = opts; IQueryable&lt;Data.Goal&gt; query = ctx.DataContext.Goals; if (criteria.Name != null) // Name query = query.Where(row =&gt; row.Name.Contains(criteria.Name)); if (criteria.SalesId != null) // SalesId query = query.Where(row =&gt; row.SalesId == criteria.SalesId); if (criteria.Status != null) // Status query = query.Where(row =&gt; row.Status == (int)criteria.Status); if (criteria.Statuses.Count != 0) // Statuses query = query.Where(row =&gt; criteria.Statuses.Contains((GoalStatus)row.Status)); if (criteria.ContactId != null) // ContactId query = query.Where(row =&gt; row.ContactId == criteria.ContactId); if (criteria.CustomerId != null) // CustomerId query = query.Where(row =&gt; row.CustomerId == criteria.CustomerId); if (criteria.ScheduledDate.DateFrom != DateTime.MinValue) // ScheduledDate query = query.Where(t =&gt; t.ScheduledDate &gt;= criteria.ScheduledDate.DateFrom); if (criteria.ScheduledDate.DateTo != DateTime.MaxValue) query = query.Where(t =&gt; t.ScheduledDate &lt;= criteria.ScheduledDate.DateTo); if (criteria.CompletedDate.DateFrom != DateTime.MinValue) // ComplatedDate query = query.Where(t =&gt; t.CompletedDate &gt;= criteria.CompletedDate.DateFrom); if (criteria.CompletedDate.DateTo != DateTime.MaxValue) query = query.Where(t =&gt; t.CompletedDate &lt;= criteria.CompletedDate.DateTo); if (criteria.MaximumRecords != null) // MaximumRecords query = query.Take(criteria.MaximumRecords.Value); var data = query.Select(row =&gt; GoalInfo.FetchGoalInfo(row)); this.AddRange(data); this.IsReadOnly = true; this.RaiseListChangedEvents = true; } } </code></pre> <p>We just check for a null value assigned to our criteria object, if it's not null then we append it to the query.</p> http://stackoverflow.com/questions/1609215/can-you-implement-an-interface-on-a-linq2sql-class 2 Can you implement an interface on a Linq2Sql class? mattruma 2009-10-22T18:44:01Z 2009-10-22T19:00:14Z <p>I have an interface called IAddress, and a class called Address that handles street, city, state/province, postal code and country. I have a couple of Linq2Sql classes that has all the address information and would like to implement the interface IAddress, and pass that in to the constructor for Address that would the load the property values.</p> <p>Is it possible have a Linq2Sql class impment and interface through the partial class that I created for it? Thanks in advance!</p> <p><strong>Additional comments</strong></p> <p>In my class I have a property called MailToStreet, I want that to map to IAddress.Street. Is there a way to do this in the partial class?</p> <p><strong>Solved</strong></p> <p>Thanks StackOverflow community! It was a snap! Here is my final code:</p> <pre><code>public partial class Location : IAddress { string IAddress.Street { get { return this.Street; } set { this.Street = value; } } string IAddress.City { get { return this.City; } set { this.City = value; } } string IAddress.StateProvince { get { return this.StateProvince; } set { this.StateProvince = value; } } string IAddress.PostalCode { get { return this.PostalCode; } set { this.PostalCode = value; } } string IAddress.Country { get { return this.Country; } set { this.Country = value; } } } </code></pre> http://stackoverflow.com/questions/1567547/is-there-a-way-to-add-a-none-option-to-the-standard-jquery-datepicker 0 Is there a way to add a "None" option to the standard jQuery datepicker? mattruma 2009-10-14T16:44:20Z 2009-10-14T17:57:33Z <p>I am trying to implement the standard jQuery datepicker control ... I am trying to move away from BasicDatePicker, which I use in a variety of my ASP.NET Web Forms projects. </p> <p>That aside, the BasicDatePicker did have a great option, which was the ability to display a None button. When the user selected the None button it would clear the text box where the date was displayed. </p> <p>Is this possible to do with the current jQuery datepicker? If not, can I change the Done button to be None and do my functionality?</p> <p>Thanks in advance!</p> <p><strong>Update 1:55pm</strong></p> <p>I noticed there is an option to close and clear the date with a keystroke...</p> <blockquote> <p>ctrl+end - close and erase the date</p> </blockquote> <p>Looking to add a None button to the calendar display so that the user can just click the button and would have the same results.</p> http://stackoverflow.com/questions/1566591/create-a-pdf-document-using-just-vb-net/1566692#1566692 3 Answer by mattruma for Create a PDF document using just VB.NET? mattruma 2009-10-14T14:33:31Z 2009-10-14T14:33:31Z <p>I know you said w/o a third party control, but maybe <strong>free</strong> will work ... but I'll just throw this out there just in case in proves to be informational.</p> <p>We have to do the same thing in our environment ... and we opted to just use Crystal Reports (which you have a license to with Visual Studio) and leverage the export to PDF functionality. Allows us to deliver <strong>pretty</strong> forms and lists to the customer.</p> <p>I'm not a big fan of Crystal Reports, for a variety of reasons ... but it was easy to implement and at no additional cost to our end customer.</p> http://stackoverflow.com/questions/1545343/is-reading-too-many-management-books-too-early-for-me/1545424#1545424 1 Answer by mattruma for Is reading too many management books too early for me? mattruma 2009-10-09T18:40:40Z 2009-10-09T19:45:01Z <p>While it's never to early to start reading, I'm just not sure reading <strong>many</strong> management books is a good idea.</p> <p>What I would recommend ... and having learned the hard way by reading way too many management books ... is that you are better off reading a couple of the classics or highly rated books on the topic of your choice. After you read them once, read them again, and then again.</p> <p>As one author said ...</p> <blockquote> <p>There is very much sound sense in the remark of a writer in the Quarterly Review many years back. "Give us the one dear book, cheaply picked from the stall by the price of the dinner, thumbed and dog-eared, cracked in the back and broken in the corner, noted on the fly-leaf and scrawled on the margin, sullied and scorched, torn and worn, smoothed in the pocket and grimed on the hearth, damped by the grass and dusted among the cinders, over which you have dreamed in the grove and dozed before the embers, but read again, again, and again, from cover to cover. It is by this one book, and its three or four single successors, that more real cultivation has been imparted than by all the myriads which bear down the mile-long, bulging, bending shelves of the Bodleian."</p> </blockquote> <p>Just my opinion ... good luck!</p> http://stackoverflow.com/questions/1531401/converting-an-mvp-asp-net-app-to-silverlight-3-help-me-choose-an-architecture/1531489#1531489 1 Answer by mattruma for Converting an MVP ASP.NET app to Silverlight 3 - help me choose an architecture mattruma 2009-10-07T12:58:51Z 2009-10-07T12:58:51Z <p>You might want to take a look at the CSLA framework, while it's not for everyone, it is a nice, easy to use and powerful framework. </p> <p>The author, Rockford Lhotka, also wrote a version just for Silverlight and provides a video series on how to create applications using CSLA and Silverlight, to help developers get up to speed quickly.</p> <p>Some links for you to check out:</p> <ul> <li><a href="http://www.lhotka.net/" rel="nofollow">Rockford Lhotka</a> </li> <li><a href="http://www.lhotka.net/cslalight/" rel="nofollow">CSLA for Silverlight</a></li> </ul> http://stackoverflow.com/questions/1525514/where-are-these-dots-coming-from-how-to-get-rid-of-them 1 Where are these dots coming from? How to get rid of them? mattruma 2009-10-06T13:15:27Z 2009-10-06T13:23:47Z <p>For the life of me, I don't know when and how these "dots" started showing up in my IDE. I'm not sure if it's Visual Studio OR Code Rush from DevExpress that is doing it. </p> <p><img src="http://lh4.ggpht.com/%5FMwlyfvVOvjY/SstCb%5FgB-5I/AAAAAAAAAIk/FUR%5FvlRe2sY/s720/Screenshot.png" alt="alt text" /></p> <p>If anyone knows how to make them go away, please help! =)</p> http://stackoverflow.com/questions/1852602/programmatically-load-a-linq2sql-partial-class/1852633#1852633 Comment by mattruma on Programmatically load a LINQ2SQL partial class mattruma 2009-12-05T16:27:07Z 2009-12-05T16:27:07Z Let's say I return 1000 tasks ... won't this make another hit to the database every time I access this property? http://stackoverflow.com/questions/1795763/gridview-export-to-csv-issue/1795859#1795859 Comment by mattruma on Gridview: Export to csv issue mattruma 2009-11-25T10:45:56Z 2009-11-25T10:45:56Z Not a problem! We usually have a method in our code behind called BindData() that binds the data to the grid, does any filtering as well. In our export method we always called BindData() first, then do the exporting. http://stackoverflow.com/questions/1770691/issues-with-pagination-in-asp-net-mvc/1771106#1771106 Comment by mattruma on Issues with pagination in ASP.NET MVC mattruma 2009-11-20T20:00:39Z 2009-11-20T20:00:39Z +1 Thank you for the explanation! http://stackoverflow.com/questions/1770691/issues-with-pagination-in-asp-net-mvc/1770727#1770727 Comment by mattruma on Issues with pagination in ASP.NET MVC mattruma 2009-11-20T15:11:00Z 2009-11-20T15:11:00Z That did the trick! Wonder why and how they are using RouteLink in the NerdDinner example? http://stackoverflow.com/questions/1725170/where-to-put-advanced-business-logic-in-asp-net-mvc-linq2sql-project/1725205#1725205 Comment by mattruma on Where to put *advanced* business logic in ASP.NET MVC/Linq2Sql project? mattruma 2009-11-15T12:15:04Z 2009-11-15T12:15:04Z This looks like the best way to handle it ... I was trying to stay away from this ... we use Csla for a lot of our other projects, and was really looking for something quick and dirty! Thanks for advice! http://stackoverflow.com/questions/1730656/user-jquery-to-drag-a-div-and-drop-in-a-td-and-have-the-div-snap-into-place Comment by mattruma on User jQuery to drag a DIV and drop in a TD ... and have the DIV "snap" into place mattruma 2009-11-13T21:03:58Z 2009-11-13T21:03:58Z I think you are right ... sortable is the way to go on this! http://stackoverflow.com/questions/1730656/user-jquery-to-drag-a-div-and-drop-in-a-td-and-have-the-div-snap-into-place Comment by mattruma on User jQuery to drag a DIV and drop in a TD ... and have the DIV "snap" into place mattruma 2009-11-13T19:35:33Z 2009-11-13T19:35:33Z To be honest ... I really need to be able to do BOTH ... I need to allow sorting in the current column, and then dragging to the right and to the left. http://stackoverflow.com/questions/1725170/where-to-put-advanced-business-logic-in-asp-net-mvc-linq2sql-project/1725205#1725205 Comment by mattruma on Where to put *advanced* business logic in ASP.NET MVC/Linq2Sql project? mattruma 2009-11-12T21:25:18Z 2009-11-12T21:25:18Z I'm wondering if I could just add an update() method to the repository, I could then do my checks there? http://stackoverflow.com/questions/1725170/where-to-put-advanced-business-logic-in-asp-net-mvc-linq2sql-project/1725226#1725226 Comment by mattruma on Where to put *advanced* business logic in ASP.NET MVC/Linq2Sql project? mattruma 2009-11-12T21:06:42Z 2009-11-12T21:06:42Z I was thinking the same ... but struggling with <i>how</i>. I would have to create an instance of the repository to do any data access I needed to do. http://stackoverflow.com/questions/1725170/where-to-put-advanced-business-logic-in-asp-net-mvc-linq2sql-project/1725205#1725205 Comment by mattruma on Where to put *advanced* business logic in ASP.NET MVC/Linq2Sql project? mattruma 2009-11-12T21:05:46Z 2009-11-12T21:05:46Z I am really trying to keep the application thin, so if I didn't have to create a <i>real</i> business objects that would be the way I want to go. In order to test it correctly, I suppose I would have to put it in the Controller ... no? http://stackoverflow.com/questions/1705408/problems-with-my-jquery-items-are-disappearing/1705426#1705426 Comment by mattruma on Problems with my jQuery ... items are disappearing ... mattruma 2009-11-11T14:29:51Z 2009-11-11T14:29:51Z So instead of using the UpdateTargetId in my Ajax call, I would do all this in a separate function? http://stackoverflow.com/questions/1705408/problems-with-my-jquery-items-are-disappearing/1705426#1705426 Comment by mattruma on Problems with my jQuery ... items are disappearing ... mattruma 2009-11-10T13:00:04Z 2009-11-10T13:00:04Z That would work ... silly question ... how would you append it? http://stackoverflow.com/questions/1703095/design-pattern-for-managing-queues-and-stacks Comment by mattruma on Design pattern for managing queues and stacks? mattruma 2009-11-09T20:42:30Z 2009-11-09T20:42:30Z By task, I mean a unit of work, in this case it's a business object. http://stackoverflow.com/questions/1698389/redirect-a-user-to-a-specific-view-when-authorization-fails/1698527#1698527 Comment by mattruma on Redirect a user to a specific view when authorization fails? mattruma 2009-11-09T00:54:57Z 2009-11-09T00:54:57Z I just removed the filterContext.Cancel and it all seems to work! http://stackoverflow.com/questions/1698389/redirect-a-user-to-a-specific-view-when-authorization-fails/1698527#1698527 Comment by mattruma on Redirect a user to a specific view when authorization fails? mattruma 2009-11-09T00:46:54Z 2009-11-09T00:46:54Z There doesn't seem to be a filterContext.Cancel property?