Search
14755 results 11071-11080
Forum
- 10th Oct 2013downloading/rendering large data sets - possible to prevent unresponsiveness and have progress bar?to share simple text information, and it'll be a
- 4th Oct 2013Valid JSON in Text file not loading and no error messagesNo - you've got objects there. If you don't want to use information from the object, just don't :-) Allan
- 4th Oct 2013Cascading Drop Downs (Solution)Update method that posts information to database: [code] public ActionResult UpdateExposure(string action, string table, string id) { int key = Convert.ToInt32(id); Exposure_Custom exposure = db.Exposure_Custom.Find(key); exposure.ID_Lob = Convert.ToInt32(Request["data[LOB]"]); exposure.ID_ExposureType = Convert.ToInt32(Request["data[ExposureTypeDescription]"]); exposure.ExposureAmt = Convert.ToDecimal(Request["data[ExposureAmt]"]); exposure.Update_User = User.Identity.Name; exposure.Update_Date = DateTime.Now; db.Entry(exposure).State = System.Data.EntityState.Modified; db.SaveChanges(); return RedirectToAction("AjaxHandler"); } [/code]
- 4th Oct 2013Duplicates tr("odd" and "even"), problem with popup divhave reading and search information but I can't find
- 3rd Oct 2013Datatables editor and special chars (ñ.`´,ç)of displaying the same information. My guess is that
- 2nd Oct 2013Losing formatting (sDom, pagination) on RenderPartial Ajax callfive columns with Note information when a user clicks
- 27th Sep 2013Wrong functional test with Selenium and datatablesSounds like an async issue then, since the language information is obtained by Ajax. Allan
- 26th Sep 2013Avoid datatable reload on initializationSee here for more information http://datatables.net/forums/discussion/17552/prevent-initial-datatables-load#Item_3
- 26th Sep 2013General settings object, retrieving the datatable object....give you column index information based on a jQuery
- 25th Sep 2013onPreSubmit doesn't seem to work for me...Its actually data.data.nome that you want here. The second parameter passed into onPreSubmit is the full data object, including the call type, id etc and the information for the form is held in the data parameter. See: http://editor.datatables.net/server . Allam