Menu
  • HOME
  • TAGS

Get datasource after applying filtering

infragistics,ignite-ui,iggrid

You can get the filtered data using the following syntax: $("#grid1").igGrid().data("igGrid").dataSource.dataView() ...

Reset the UI for Infragistics IgniteUI igFileUpload

jquery,infragistics,ignite-ui

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" }); ...

Labels on x-axis of only displaying seven of fourteen - Infragistics igniteUI jquery chart control

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...

Re-render igGrid after initial canceling of rendering event

infragistics,ignite-ui,iggrid

You need to call the dataBind method again with a parameter true.

Save Client Side Generated Image on Button Click

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...

RegExp for cyrillic and latin alphanumeric strings in ignite 2013.2 igTextEditor`s validatorOptions

infragistics,ignite-ui

You will need to cover the Cyrillic characters as a Unicode range: regExp: /^[A-Za-z0-9\u0410-\u044F]+$/ ...

How to return data when a file is uploaded with igUpload control

infragistics,ignite-ui

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...

Getting entries of child grids of currently expanded row in `igHierarchicalGrid`

ignite-ui,iggrid,rowexpansion

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!...

IgniteUI IgTileManager does not maintain the correct maximized tile location when switching layouts

jquery,infragistics,ignite-ui

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 ()...