Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
108 views

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

 

Daniel
Telerik team
 answered on 18 May 2015
5 answers
249 views
Can we define AsyncUpload drop zone via javascript/jQuery 1.9.1 ?

telerik controls version : 2013.2.611.40
.NET : 4.0
Browser IE 8/9/10+
Andre Light
Top achievements
Rank 1
 answered on 18 May 2015
4 answers
399 views
Ive put a RADEditor on a page, but when I select the bulleted list function, it doesnt work, numbered list doesnt work either.  Everything else seems to be OK, bold, italic, underline, etc

Is there something else Im missing in order to provide bullet list functionality ?
Ianko
Telerik team
 answered on 18 May 2015
3 answers
128 views

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.

Hristo Valyavicharski
Telerik team
 answered on 18 May 2015
13 answers
257 views
I am glad that we finally got Biff for radgrid but I have a issue  and there is a lack of documentations so maybe you can help.
with ExcelML i was able to do the following in my code behind

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 Sub

and then

Protected 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 Sub

is there any way to do this with the RadGrid.BiffExporting Event?

Thanks In Advance
Kostadin
Telerik team
 answered on 18 May 2015
1 answer
106 views
I'm trying to figure out what I'm doing wrong. On a touchscreen device, if the user tries to just scroll the screen, it won't scroll if they are touching anywhere inside the radgrid. I have disabled scrolling and client selecting but it still won't scroll the page. I either have to enable radgrid scrolling or leave a gap along the edge of the screen for scrolling. Is this normal?
Maria Ilieva
Telerik team
 answered on 18 May 2015
1 answer
85 views

Hi,

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

Eyup
Telerik team
 answered on 18 May 2015
3 answers
154 views

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

Vessy
Telerik team
 answered on 18 May 2015
5 answers
512 views

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

 

Peter Filipov
Telerik team
 answered on 18 May 2015
2 answers
2.1K+ views
I have rad Combo box
    <telerik:RadComboBox runat="server" ID="rcb" Height="150px" OnItemsRequested="rcb_ItemsRequested" AutoCompleteSeparator="," >
     </telerik:RadComboBox>
I need to get Selected value from client side 
i tried this
function getvalue()
    {
        var combobox = $find("<%= rcb.ClientID %>");
        var value = combobox.get_selectedItem().get_value();
    }
but get_selected Item get only last selected item .
I need to get all selected Item.
lylia
Top achievements
Rank 1
 answered on 18 May 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?