Questions tagged [lib.web.mvc]

Lib.Web.Mvc is a library which contains some helper classes for ASP.NET MVC such as strongly typed jqGrid helper, XSL transformation HtmlHelper/ActionResult, FileResult with range request support, custom attributes and more.

Lib.Web.Mvc is a library which contains some helper classes for ASP.NET MVC such as strongly typed jqGrid helper, XSL transformation HtmlHelper/ActionResult, FileResult with range request support, custom attributes and more.

PM> Install-Package Lib.Web.Mvc

Resources

29 questions
14
votes
3 answers

RangeFileContentResult and Video streaming with Ranged Requests

I have an application which intended to stream videos back from our local DB. I spent a lot of time yesterday attempting to return the data a either a RangeFileContentResult or RangeFileStreamResult without success. In short, when I return the file…
dougajmcdonald
  • 19,231
  • 12
  • 56
  • 89
1
vote
1 answer

System.OutOfMemoryException: 'Exception_WasThrown'

Follow my code: [HttpGet] public ActionResult StreamVideo(int type1, int type2) { using (var ctx = new Entities()) { var result = ctx.Table.Where(x => x.Type1 == type1 && x.Type2 == type2).FirstOrDefault(); byte[] video_byte…
Matheus Miranda
  • 1,755
  • 2
  • 21
  • 36
1
vote
1 answer

Lib.Web.Mvc.JQuery.JqGrid - JqGridColumnEditTypes.Select - How send row id to action that load dropdown

I'm using MVC5 and helper Lib.Web.Mvc.JQuery.JqGrid. I need to load the list, into edit cell, without the current record, for to get one filtered list of the same type. I have to get this: Category 1 Category 1.1 (current record) Category…
1
vote
1 answer

Benefit of ModelBinder for lib.web.mvc

What is the benefit of creating a ModelBinder when using lib.web.mvc. ? This example from 2011 does not use a ModelBinder http://tpeczek.com/2011/03/jqgrid-and-aspnet-mvc-strongly-typed.html public class ProductViewModel { #region Properties …
Barry MSIH
  • 3,525
  • 5
  • 32
  • 53
1
vote
0 answers

How to set up the onCellSelect in jqGrid with lib.web.mvc

I'm trying to set up a function to get a particular cell value using the jqGrid and lib.web.mvc. I can't figure out with the documentation on how to accomplish this... I have the following set up in my JqGridHelper helper definition. Notice the…
sagesky36
  • 4,542
  • 19
  • 82
  • 130
1
vote
2 answers

Error with HTML5 video in Chrome, using RangeFilePathResult

Using MVC3 and flowplayer, I have a video player that is set up to get video files with the following markup: