We are trying to pass customdata in the connection string in order to implement dynamic security. Can you tell us if the customdata attribute is passed to the msmdpump.dll by the pivotgrid control as we are not seeing a value when we call the customdata function in our cube?
Thanks
Richard

Please I need to create a custom Appointment class but I don't know how, I'm creating a scheduler with RadScheduler, the provider it's a DataBase I'm using a Web Service... I want to change and add properties in the Insert and Edit form and save it in the DataBase. I read some post from here and the documentation but I'm still knowless about what I want to do... I hope you can help me.
Nota: Sorry about my english I'm a spanish speaker.
Protected Sub ExportGrid_ExcelMLExportRowCreated(sender As Object, e As GridExportExcelMLRowCreatedArgs) Handles ExportGrid.ExcelMLExportRowCreated If e.RowType = GridExportExcelMLRowType.HeaderRow Then For Each col As GridColumn In ExportGrid.MasterTableView.Columns Dim xlCell As CellElement = e.Row.Cells.GetCellByName(col.UniqueName) xlCell.StyleValue = "myStyle" 'xlCell.Attributes.Add("ss:Width", col.HeaderText.Length.ToString()) Next End If End SubProtected Sub ExportGrid_ExcelMLExportStylesCreated(sender As Object, e As GridExportExcelMLStyleCreatedArgs) Handles ExportGrid.ExcelMLExportStylesCreated Dim style = New StyleElement("myStyle") style.AlignmentElement.Attributes.Add("ss:WrapText", "1") e.Styles.Add(style)End SubHi,
My scenario in my radgrid column level applying filter in Descending order at column name CompanyId, double click it's redirect to another page, and again come back to applied grid column filter in page there is no applied filters in radgrid.
can you suggest me.
Thanks,
Rajashekhar M

Dear Telerik-Team,
is there a way to change the heightOffset-value of a RadSplitter from Javascript?
I've tried getting the Client-Side object and using set_heightOffset(x), but that didn't seem to work.
Thanks in advance,
Robin

Hi
I need help tracking down an issue with the temp folder. Our temporary files are being deleted before the user has time to press the upload button.
At first I thought it was an error because the files were not being uploaded to the temporary folder. But after watching the temp folder carefully we did see the file being upload but it was deleted, sometimes immediately and sometimes only after 5 minutes on the live server. I then tried to replicate the issue on our dev servers, but it did not happen as fast (probably because they are not under the same load). Files only got deleted after 1 hour (2 developers saw this at the same time, while watching the folder, without anyone having a session open to the site on any browser).
After scouring the internet I found that the temporary files only get deleted in the following situations (http://www.telerik.com/forums/radasyncupload---cannot-find-the-temporary-file):
- you use FileSave() method. (we are not using this as can be seen from our code below)
- it expires. The default expire time is 4 hours and it can be increased.
- the Application pool is recycled.
Here is the code:
<telerik:RadAsyncUpload ID="fuScreenshot" runat="server" MaxFileSize="1048576" UploadedFilesRendering="BelowFileInput" MultipleFileSelection="Automatic" PostbackTriggers="btnSubmit" TemporaryFolder="~/Temp" OnClientFileUploadFailed="OnClientFileUploadFailed" Skin="Default"></telerik:RadAsyncUpload>Below is the code for when the upload button is pressed, but we never press it and the files still get deleted:
foreach (Telerik.Web.UI.UploadedFile screenshot in fuScreenshot.UploadedFiles){ byte[] myData = new byte[screenshot.InputStream.Length]; screenshot.InputStream.Read(myData, 0, myData.Length); wsa.PFM005(ConfigurationManager.AppSettings["Username"], ConfigurationManager.AppSettings["Password"], ConfigurationManager.AppSettings["FileDomain"], "/system/files/", item.ScreenshotID.ToString() + screenshot.GetExtension(), myData);}
My questions thus are, what method(s) does the RadAsyncUpload use to delete the files? Or is there anything you can suggest I look at to resolve the issue? How would I know if the Application Pool Recycling is the culprit and how does the application pool know these are temporary files (My apologies I am not too familiar with servers).
Details:
using Telerik v.2015.1.225.45
Servers use load balancing