Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
151 views
Is there a way to assign a tooltip or otherwise uniquely identify the spin up / spin down buttons on a RadNumericTextBox?  (Nothing jumps out in the documentation as to how to accomplish this; searches have been fruitless thus far.)

When running JAWS against our application in assistive technology mode, the buttons show up in the JAWS Links List as "Spin Up" and "Spin Down" so that there's no indication of with which control they're associated (see attached).

Daniel
Telerik team
 answered on 02 Mar 2015
1 answer
131 views
Hello,

I have a radGrid that populates with groups. The group header displays the group header title and aggregate sum as expected but the group header text is not aligned under the column name. All the header text is aligned in the left side of the groupheader. My code for calculates the sum is this:

protected void RadGrid1_PreRender(object sender, EventArgs e)
        {
            RadGrid1.HeaderStyle.Font.Size = 10;
            RadGrid1.GroupHeaderItemStyle.Font.Size = 10;  
 
            GridGroupByExpression gridGroupByExpression1 = new GridGroupByExpression();
            GridGroupByField gridGroupByField1 = new GridGroupByField();
             
            gridGroupByField1.FieldName = "GroupName";
            gridGroupByField1.HeaderValueSeparator = " ";
 
            gridGroupByExpression1.SelectFields.Add(gridGroupByField1);
            gridGroupByExpression1.GroupByFields.Add(gridGroupByField1);
 
            GridGroupByField gridGroupByField3 = new GridGroupByField();
             
            foreach (totals tot in totalsList)
            {
                gridGroupByField3 = new GridGroupByField();
                gridGroupByField3.FieldName = tot.name;
                gridGroupByField3.HeaderText = " ";
                gridGroupByField3.HeaderValueSeparator = " ";
                gridGroupByField3.FormatString = " (Total: {0})";
                gridGroupByField3.Aggregate = GridAggregateFunction.Sum;
                gridGroupByExpression1.SelectFields.Add(gridGroupByField3);
            }
 
            RadGrid1.MasterTableView.GroupByExpressions.Add(gridGroupByExpression1);
        }

I need to align the sum under the column name inside the groupheader text.

Thank you
Daniel
Telerik team
 answered on 02 Mar 2015
1 answer
99 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
226 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
128 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
94 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
262 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
78 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
142 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
120 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?