The information to send additional data to the server Upload MVC Wrapper and the igUpload control on the client and vice-versa will be available in the Ignite UI June 2015 service release. What you can do currently is to handle the client-side fileUploaded event and send an additional Ajax request...
You are updating the tile configuration and merging it with existing configuration on button click. If you destroy the widget first and then initialize it with the new configuration your sample will work. I have updated your fiddle. $(function () { $('#layoutContainer').igTileManager(optionsWide); $('#wideBtn').click(function () { $('#layoutContainer').igTileManager("destroy"); $('#layoutContainer').igTileManager(optionsWide); }); $('#narrowBtn').click(function ()...
You can destroy and after that re-create the widget. Removing the inner DOM will not remove the widget. You can do something like this: if ($("#FUNewFile").data("igUpload")) { $("#FUNewFile").igUpload("destroy"); } $("#FUNewFile").igUpload({ mode: 'multiple', multipleFiles: true, maxUploadedFiles: 5, autostartupload: true, progressUrl: "IGUploadStatusHandler.ashx", maxSimultaneousFilesUploads: 2, controlId: "serverID1" }); ...
javascript,jquery,infragistics,ignite-ui
This solution offers better browser support and can be assigned to a button. http://jsfiddle.net/koo2hv5t/7/ Check blob support (you can add a message for old browsers or a server side fallback) Wait till animation end Copy the chart to dataURL format with igDataChart Convert to a blob with Util.dataURLToBlob from https://github.com/ebidel/filer.js...
You can get the filtered data using the following syntax: $("#grid1").igGrid().data("igGrid").dataSource.dataView() ...
You will need to cover the Cyrillic characters as a Unicode range: regExp: /^[A-Za-z0-9\u0410-\u044F]+$/ ...
I managed to find a way for you how to extract the specific child grid data: $(ui.parentrow.context).find("table[data-childgrid=true]") .data() .igGrid .dataSource .data(); This should still be made easier to be accessed using the event arguments more directly!...
You need to call the dataBind method again with a parameter true.
jquery,json,html5,infragistics,ignite-ui
The x axis defaults to displaying labels on an automatically calculated interval and will throttle down the number of labels displayed as they would start to collide. In your case, you are using some rotation in order to be able to display more labels with higher density, so you should...