Replies
Hello Kevin,
Can you paste/attach a log file that shows the actual exception?
Also can you attach the log file of the installer itself?
This will allow us to see what the actual reason for such behavior may be.
Thank you.
Hello Randy,
Normally “onError” event is fired when exception occurs on Server or Client. In the mentioned situation there is no exception thrown until the Server itself does not time out.
One possibility is to monitor the upload status and set JavaScript timeout or counter in uploading event that will cancel the upload after reached time limit.
You can monitor these with “fileStatus” argument in uploading event.
Hello Randy,
Normally there should be no reason caused by the control itself that may lead to limit files upload size when it is set correctly in upload settings. The main possibilities for such behavior may be IIS settings or Firewall/Security software that may prevent copying of such files. There may be also some OS related security settings (applied to upload folder or by default) that may prevent copying files with such size. Timeout itself can be caused by slow connection or too many connections made at the same time.
Note that IIS Server by default sets file size limit which can also cause issues when large files are uploaded.
Check these possibilities and update me with your findings.
Hello aschoi,
You can also use one of our internal functions for this:
$("#grid1_" + args.columnKey).data("columnIndex");
This code is more clear and also can be used.
Hello aschoi,
It depends on the event used for this. For example if you use grid “cellClick” event the column index will be part of arguments returned by this event.
If you use external event (like button click) you should use custom function as follows:
function getColumnIndexByKey(columnKey) {
var columns = $("#grid1").igGrid("option", "columns");
var columnIndex = 0;
for (var i = 0; i < columns.length; i++) {
if (columns[i].hidden)
continue;
if (columns[i].key === columnKey) {
return columnIndex;
}
columnIndex++;
}
return -1;
}
You can use this function to get the column index by its key and then use the index (and row index) to put needed cell in edit mode.
Hello Dharmendra,
This is very unusual behavior.
You can refer to the following online sample showing how to open dialog on button click – https://www.igniteui.com/dialog-window/basic-usage
Use the code shown there in your sample and inform me what the results are.
Hello Dhanraj,
As explained here – help.infragistics.com/NetAdvantage/jQuery/2012.1/CLR4.0?page=igGrid_Columns_and_Layout.html – when Fixed Headers are disabled column headers will be scrolled with the columns.
This is expected behavior.
If you need additional information let us know.