Skip to content

Replies

0
Pete Sral
Pete Sral answered on Jan 4, 2022 10:34 PM

With the sample you provided I was able to determine that our project was referencing a newer version of the .js files (21.2), updated via NuGet; however, the  MVC.dll was 2021.1, and once I referenced the correct javascript the binding worked as expected.

0
Pete Sral
Pete Sral answered on Jul 21, 2021 5:47 PM

Thanks, I deduced that same thing.  Thanks again for replying.

0
Pete Sral
Pete Sral answered on Jul 16, 2021 5:24 PM

Thanks, I found that answer shortly after posting (RTFM).  Thank you for pointing out the routing exclusion.  I missed that piece.

The other part:

Controller:

UploadConfig.DeleteFile(sender, args);

This is in the sample and appears to be a utility method that deletes the file if it exists? 

0
Pete Sral
Pete Sral answered on Jul 15, 2021 6:07 PM

Re: .ProgressUrl(Url.Content("~/IGUploadStatusHandler.ashx"))
Source: http://pt-br.infragistics.com/…/example-of-iguploadstatushandler-ashx

That url ( http://igniteui.com/IGUploadStatusHandler.ashx ) is handled by a HTTP handler that comes as part of the Infragistics.Web.MVC dll . In order to use it in your own application you would need to register that handler in your config file. For example:

<httpHandlers>

         <add verb="GET" type="Infragistics.Web.Mvc.UploadStatusHandler"

                         path="IGUploadStatusHandler.ashx" />

    </httpHandlers>

0
Pete Sral
Pete Sral answered on Mar 30, 2016 2:26 PM

I did a few things:

1) Cleared the ASP.Net Temp folder

2) Turned on/off behaviors.

These seem to have fixed the problem.  For now, I'll consider this item closed unless it comes up again.

0
Pete Sral
Pete Sral answered on Mar 29, 2016 6:55 PM

Initial Load:

<link href="../../ig_res/Default/ig_shared.css" type="text/css" rel="stylesheet" />
<link href="../../ig_res/RedPlanet/ig_shared.css" type="text/css" rel="stylesheet" />
<link href="../../ig_res/RedPlanet/ig_dataGrid.css" type="text/css" rel="stylesheet" />
<link href="../../ig_res/RedPlanet/ig_dialogwindow.css" type="text/css" rel="stylesheet" />
<link href="../../ig_res/Default/ig_texteditor.css" type="text/css" rel="stylesheet" />
<link href="../../ig_res/RedPlanet/ig_hierarchicalDataGrid.css" type="text/css" rel="stylesheet" />
<link href="../../ig_res/RedPlanet/ig_webtab.css" type="text/css" rel="stylesheet" />

After clicking on the 2nd row (checkbox) there is a postback that occurs:

link href="ig_res/RedPlanet/ig_shared.css" type="text/css" rel="stylesheet" />
<link href="ig_res/RedPlanet/ig_dialogwindow.css" type="text/css" rel="stylesheet" />

The other pattern I see… I can have one item checked.  Uncheck and check another no error, but, once I check 2 rows.  Then a post back occurs.  Not sure why a postback would happen when items are checked on the grid.

0
Pete Sral
Pete Sral answered on Mar 29, 2016 5:23 PM

I ran Fiddler and it’s a reference issue, but, the page loads and it’s not until the second row is checked the error occurs?

What would cause the references to change?