Replies
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.
Thanks, I deduced that same thing. Thanks again for replying.
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?
Re: .ProgressUrl(Url.Content("~/IGUploadStatusHandler.ashx"))
Source: http://www.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>
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.
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.
