Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
143 views
When you select a file it then uploads the file and shows the remove button next to it. If you press the remove button the file disappears but when you do a postback and the fileupload event fires , it has the file that was deleted  in the collection and moves it to the target folder. This is in the 2015.1.225.45 version. It did not do this in earlier versions.
Plamen
Telerik team
 answered on 02 Mar 2015
1 answer
269 views
I have radgrid and in the GridTemplateColumn iteam template  I have comboBox. On button click event, I want to get the selected value of the comboBox inside radgrid. I have used following jquery code but it not giving me right output

  $("#RadGrid1 tr").each(function () {
                            var testBit = $(this).find("select[class*=ddtestCombox]").val();
                            }
                        });

how do I accomplished this task using jquery?

Thanks
Hristo Valyavicharski
Telerik team
 answered on 02 Mar 2015
0 answers
183 views
Hi Team,

We developed multiple file upload feature using RadAsyncUpload control with telerik version 2012.1.411.35 on our SharePoint platform.
Our environment have 4 web front end servers; hence we use network-shared-folder for Target and Temp folder of RadAsyncUpload  control.
This network-shared-folder was granted "full access" on Network Systems, Authenticated Users and Every One user accounts. But we are unable to succeed using RadAsyncUpload control.

So,
Can you tell us what permission / which user to be granted permission on this network-shared-folder?
Is it possible to use local-folder on all 4 WFE platform? Wouldn't we have issues during upload in this case?


FYI, the error we receive while using network-shared-folder is below,

System.Exception: RadAsyncUpload does not have permission to write files in the TemporaryFolder. In Medium Trust scenarios, the TemporaryFolder should be a subfolder of the Application Path.    at Telerik.Web.UI.RadAsyncUpload.TestTemporaryFolderPermissions()     at System.Web.UI.Control.PreRenderRecursiveInternal()     at System.Web.UI.Control.PreRenderRecursiveInternal()     at System.Web.UI.Control.PreRenderRecursiveInternal()     at System.Web.UI.Control.PreRenderRecursiveInternal()     at System.Web.UI.Control.PreRenderRecursiveInternal()     at System.Web.UI.Control.PreRenderRecursiveInternal()     at System.Web.UI.Control.PreRenderRecursiveInternal()     at System.Web.UI.Control.PreRenderRecursiveInternal()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyn... 2089f4ca-c105-4340-ab32-ac3565390869

Thanks in Advance,
Elito
Top achievements
Rank 1
 asked on 02 Mar 2015
0 answers
134 views
If radcombobox contains items with special characters means non English characters like çã

Radcombobox is not closing after filtering, it  remains opened always and focus is not going out of the control, if focus is moving out i.e. if i press F12 for developer tools it is working

Please suggest a fix for this.
Mahesh
Top achievements
Rank 1
 asked on 02 Mar 2015
4 answers
312 views
Hi there,

I almost succeeded in styling a RadMenu based on Menu.PNG.
The only thing I am not capable of is setting the borders for the main items (see Menu.PNG).
I have encloded a screen shot of my current styled menu (Test.PNG) and below you will find the css for the TEST.png menu.

Thanx!

Marcel
.RadMenu_Test .rmRootGroup, .RadMenu_Test a.rmLink, .RadMenu_Test .rmGroup .rmText, .RadMenu_Test .rmVertical .rmText, .RadMenu_Test .rmLeftArrow, .RadMenu_Test .rmRightArrow, .RadMenu_Test .rmTopArrow, .RadMenu_Test .rmBottomArrow, .RadMenu_Test .rmIcon {
    background-color: transparent;
}
 
 
div.RadMenu_Test .rmLink .rmText,
div.RadMenu_Test .rmFocused .rmText {
    line-height: 57px;
    color: red;
    font-size: 18px;
    font-weight: Bold;
}
 
 
div.RadMenu_Test .rmSelected .rmText,
div.RadMenu_Test .rmLink:hover .rmText,
div.RadMenu_Test .rmExpanded .rmText {
    color: #555;
}
 
 
div.RadMenu_Test .rmGroup,
div.RadMenu_Test .rmMultiColumn,
div.RadMenu_Test .rmGroup .rmVertical {
    background-color: #FFFFFF;
    border: 1px solid #979797;
}
 
 
div.RadMenu_Test a.rmLink:hover,
div.RadMenu_Test a.rmExpanded {
    background-color: aqua;
    border-radius: 8px 8px 0 0;
    border-left: 1px solid #979797;
    border-right: 1px solid #979797;
    border-top: 1px solid #979797;
}
 
 
div.RadMenu_Test .rmGroup .rmItem .rmLink .rmText {
    color: black;
    line-height: 30px;
    font-size: 12px;
    font-weight: normal;
    text-decoration: underline;
    background-color: white;
}
 
 
div.RadMenu_Test .rmGroup .rmItem .rmLink:hover {
    background-color: #fff;
    border: 0px;
}

Magdalena
Telerik team
 answered on 02 Mar 2015
3 answers
116 views
Will the toolbar be responsive and/or adaptive any time soon? I see a rendermode property but it does not seem to do anything.

Marty
Ivan Zhekov
Telerik team
 answered on 02 Mar 2015
6 answers
202 views

Hi,

When i select a particular item in the listbox, i want to check for a condition  and display a message to the user. I could display a message but the item is not displaying in the destination listbox. Why are the selected items not displaying in destination list box?



C# code:
protected void rlbClntService_Transferring(object sender, RadListBoxTransferringEventArgs e)
{
 
            string hHold = Uc_Client.Clients.SelectedValue;
            double pLevel, eligibility;
            string sItem;
             
            pLevel = objBLLClntServ.GetClientPLevel(hHold);
            sItem = rlbClntService.SelectedItem.Value;
            eligibility = objBLLClntServ.GetEForSelectedItem(sItem);
            if (pLevel > eligibility)
            {
                 
                //ScriptManager.RegisterStartupScript(this, GetType(), "showalert", "alert('Client is not eligible.');", true);
                lblWarning.Text = "This client not eligible. ";
                mpuWarning.Show();
                 
            }
            
}
 
ASPX:
 
<table>
                                                <tr>
                                                    <td>
                                                        <telerik:RadListBox ID="rlbClntService" runat="server" AllowTransfer="True" AllowTransferDuplicates="false" AutoPostBack="true"
                                                            AllowTransferOnDoubleClick="True" AutoPostBackOnTransfer="true" EnableDragAndDrop="true"
                                                            Height="130px" Skin="Forest" TransferToID="rlbSelectedServices" Width="400px" OnTransferring="rlbClntService_Transferring">
                                                            <ButtonSettings ShowReorder="false" ShowTransferAll="false" />
                                                        </telerik:RadListBox>
                                                    </td>
                                                    <td>
                                                        <table>
                                                            <tr>
                                                                <td>
                                                                    <asp:Label ID="lblSelectedServices" runat="server" CssClass="label" Text="Selected Services" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td>
                                                                    <telerik:RadListBox ID="rlbSelectedServices" runat="server" AllowDelete="true" Height="110px"
                                                                        Skin="Forest" Width="400px">
                                                                        <ButtonSettings ShowDelete="true" TransferButtons="All"  />
                                                                    </telerik:RadListBox>
                                                                </td>
                                                            </tr>
                                                        </table>
                                                    </td>
                                                </tr>
                                            </table>
Hristo Valyavicharski
Telerik team
 answered on 02 Mar 2015
1 answer
162 views
Is there a way to hide the Time column in the Agenda view? Or to customize the time display? I saw one example that shows only the start time or "All day" but couldn't find the code for that.

Thanks for your help.

Tri
Plamen
Telerik team
 answered on 02 Mar 2015
1 answer
321 views
Hello,

Is there a way to hide the Time column in Agenda view? Or, can I customize the Start time & End time? I saw on one example, in the Time column, only the Start time shows, or "All days", but I couldn't find the code for it. I am using version 2013.3.1114.40.

Thanks for your help.

Tri
Plamen
Telerik team
 answered on 02 Mar 2015
11 answers
292 views
Hello,

I am useing telerik version 2014.3.1209.40. I use radcombox with checkbox features.

<telerik:RadComboBox ID="MultiCheckComboLocation" runat="server" CheckBoxes="true" Width="80%" ZIndex="1000000" OnSelectedIndexChanged="MultiCheckComboLocation_SelectedIndexChanged" ShowMoreResultsBox="true" AutoPostBack="true" OnClientBlur="IsCheckAllSelected" EnableVirtualScrolling="true" CheckedItemsTexts="DisplayAllInInput" EnableCheckAllItemsCheckBox="true" EnableEmbeddedSkins="False" EnableEmbeddedScripts="False">
</telerik:RadComboBox>

But when I tick the checkbox, the checked item did not appear in combo text field. Also when I click checkall checkbox, nothing happened. It is working fine Google Chrome. But not working on both ie 11 and firefox 34.0.5. 

And combox not show data when I use itemsrequested event to bind data.

<telerik:RadComboBox ID="cboEmployee2" EmptyMessage="Select Employee ID or Name" Width="250px" CheckBoxes="true" Skin="Default" EnableLoadOnDemand="True" ShowMoreResultsBox="false"  ForeColor="Black" EnableVirtualScrolling="true" Font-Size="12px" OnClientItemChecked="OnClientItemCheckedEmp2" OnClientDropDownClosed="OnClientSelectedIndexChangedEmp2" AutoPostBack="false"  runat="server" OnItemsRequested="cboEmp2_ItemsRequested" EnableCheckAllItemsCheckBox="true" OnClientLoad="OnClientLoad2" ZIndex="1000000" OnClientBlur="IsCheckAllSelected2" ShowToggleImage="false" EnableEmbeddedSkins="False" EnableEmbeddedScripts="False">
</telerik:RadComboBox>


It fired itemsrequested event and I got data and it binds to the control. But after everything finished, the combox only show the word measuring item. I attached the picture for it. 

Kindly help me on this issues. Thanks in advance.

Best regards,
Ei Wai
Ei Wai
Top achievements
Rank 1
 answered on 02 Mar 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?