Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
146 views

I'm attempting to use my first RadHtmlChart (pie chart).  The SqlDataSource provides the following:

+---------------------------+--------------------+

|              stat              |    StatCount    |

+---------------------------+--------------------+
|Closed                       |         4067        | 

+---------------------------+--------------------+
|Pending Assignment |           1            |

+---------------------------+--------------------+
|QA Ready                 |       600            | 

+---------------------------+--------------------+
|In QA                        |       400             |

+---------------------------+--------------------+
|Assigned                  |      4946            |

+---------------------------+--------------------+

The RadHtmlChart:

<telerik:RadHtmlChart
     runat="server"
     ID="rhc_assnmtStats" Transitions="true"
     Skin="Default"
     DataSourceID="sdsAssnmtStats" >
          <PlotArea>
                <Series>
                    <telerik:PieSeries StartAngle="90">
                        <LabelsAppearance Position="OutsideEnd"></LabelsAppearance>
                        <SeriesItems>
                            <telerik:PieSeriesItem
                                  Name="stat"
                                  Visible="true"
                                  VisibleInLegend="true"
                                  Y="StatCount" />
                        </SeriesItems>
                    </telerik:PieSeries>
                </Series>
            </PlotArea>
            <Legend>
                <Appearance Position="Right" Visible="true"></Appearance>
            </Legend>
            <ChartTitle Text="Assignment Counts by Status">
                <Appearance Align="Center" Position="Top"></Appearance>
            </ChartTitle>
        </telerik:RadHtmlChart>

 

Error message:

Cannot create an object of type 'System.Nullable`1[[System.Decimal, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]' from its string representation 'StatCount' for the 'Y' property.

What am I doing incorrectly?

Thanks,

J

 

Jerald
Top achievements
Rank 1
 answered on 26 Jul 2018
1 answer
140 views

I create Sharepoint 2013, and deploy it in Sharepoint Farm Enterprise, all running well with Administrator user privileged, but when I access page with my webpart in it, with general user, it come with error

 

"Sorry, this list hasn't been shared with you. "

 

In debug mode (I build with VS 2017 in server environtment) it have same behaviour

 

I use RadAjaxLoadingPanel component, RadTabStrip component, RadMultiPage component, RadPageView component, RadScheduler Component, RadTooltip component

Could you assist me with this permission error? any limitation on Telerik Scheduler in my WebPart?

Peter Milchev
Telerik team
 answered on 26 Jul 2018
1 answer
120 views

I have various different data sets that I get from one of my VB.NET WebAPI's. My WebAPI is a separate project that feeds a lot of JSON to another client-side project with my Grid.

I wanted to be able to have users select which data set they want to see, such as "Due Dates" or "Books" or "Memberships" and have each different option show a different RadGrid, while only ever including one RadGrid in my ASPX. I first thought to try UserControls, each with its own grid and binding logic, but I never got them working.

Is it possible for me to just have one RadGrid defined in my ASPX and then have it be fed data and how to display that data from my WebAPI on-demand? I would somehow need it to know how to size certain columns, how to have different item templates, how to have different sorting, etc. I effectively just don't want 10 different RadGrid controls on one page, and I want them all to be fed via my WebAPI and have as little code-behind in the grid's project as possible.

Peter
Top achievements
Rank 1
 answered on 26 Jul 2018
3 answers
189 views

How set default time like "00:12:00" in RadDateTimePicker?

I have set TimePopupButton-Visible="false" and only want to select the date...

Rumen
Telerik team
 answered on 26 Jul 2018
4 answers
1.7K+ views

Hi,

could somebody help me with my issue ? I have radtextbox with TextMode="SingleLine". This textbox awaits user's scanned barcode with enter key as last char. Then I process input text in OnValueChanged client side event. So far so good. The problem has appeared when input text is longer then radtextbox width. The situation is shown in attachment.

The question is, how to style single line radtexbox so it will look like multiline (increase height and wrap text), but still acts as SingleLine, e.g. on enter key press no new row will be added, just OnValueChanged event should rise...

Thank you

Best regards

Vasssek

Vasssek
Top achievements
Rank 1
 answered on 25 Jul 2018
2 answers
89 views

I have a ascx control that contains a popup radWindow which contains a datalist that is populated at the time the ascx is loaded on the page.  A button displays the radWindow with the preloaded values in a template, which contains an editable textbox on each row.  When the window is hidden, the textbox values should persist in the hidden window until the Save button on the main page is pressed saving the entire page, plus the values in the hidden radWindow.

When I load the page, and open the radWindow for the first time, the previously saved values are displayed in their respective textboxes.  If I then press OK to hide the window, then immediately reopen it, the values in the VISIBLE textbox are gone.  The values in the label control and the HIDDEN textbox are retained.

If when I open the window for the first time with the original values present, then change any one of the visible text boxes, then close and immediately reopen, all my values are retained, including the preloaded values plus any edits.  I can now open and close as many times as I want without changing any data values and not lose any values in the visible textboxes.

If I change the hidden textbox to visible, it also loses its values as in the above scenario.  If I change the visible textbox to hidden, it retains its values in all scenarios.  The label in the <itemtemplate> doesn't seem to be affected.  

If I navigate to the page, which prepopulates the datalist in the radWindow, and DO NOT open the window, then press save on the main page, I also lose the values in the Visible Textbox.

So, it appears that when a textbox is visible in the window, it does not persist its values, unless something has changed.  Not sure why it will show the values when the window opens for the first time and not show them on any subsequent open.  I have tweaked several settings on the radWindow control to no avail.  This is happening in multiple browsers (Chrome, IE, Edge), so not isolated to browser type.  I am curious what is triggered when a value is changed to suddenly persist the values in the VISIBLE text boxes, why the textboxes do not seem to have persisted values when they are visible, regardless if the window is opened or not.

I converted this from another third-party window control and it worked perfectly.  Since we are now using Telerik, it necessitated the change. The only changes I made to the sourcecode was the javascript function that opens the radWindow in the 'onclick' event and  the <telerik:windowmanager> tag, down the to the <ContentTemplate> wrapper tags.  Everything contained between the ContentTemplate tags is exactly the same, essentially reproducing the previous window controls behavior, with the exception of this issue.

Thoughts?!?

Button that opens the window: 

<input type="button" class="command_button" value="..." onclick="javascript: window.radopen(null, 'radPreWin');" />

Window:

 <telerik:RadWindowManager ID="RadWindowManager1" runat="server">
        <Windows>
            <telerik:RadWindow ID="radPreWin" runat="server" Title="Pre-XXXX Funding" Height="400px"
                Width="300px" Left="150px" ReloadOnShow="true" Modal="true" DestroyOnClose="false">
                <ContentTemplate>
                <center>
                   <br />
                    <table>
                        <tr>
                            <td valign="top" colspan="2" width="100%">
                                <asp:HiddenField ID="hidPreFundArr" runat="server" />
                                <asp:datalist id="dlstPreFundList" runat="server" RepeatDirection="vertical" EnableViewState="true" Height="200"
                                cellpadding="0" cellspacing="0">
                                <itemtemplate>
                                <asp:label ID="lblPreFundYear" Width="66" Runat="server" CssClass="standard-text-small">
                                <%# DataBinder.Eval(Container, "DataItem.CP_Funding_Year_Text") %>
                                </asp:label>
                                <asp:TextBox ID="txtPreFundYear" Runat="server" Visible="false" CssClass="standard-text" Columns="15" Text='<%# DataBinder.Eval(Container, "DataItem.CP_Funding_Year") %>'>
                                </asp:TextBox>
                                <asp:TextBox ID="txtPreFundingAmount" Runat="server" Visible="true" CssClass='standard-text' ReadOnly='<%#IIf(mbIsReadOnly, "True", "False") %>' TabIndex="20" Columns="15" Text='<%# Format(DataBinder.Eval(Container, "DataItem.CP_Funding_Amount"), "#,###") %>'>
                                </asp:TextBox>
                                <asp:comparevalidator ID="txtPreFundingAmountValidator" ControlToValidate="txtPreFundingAmount" Type="Currency" Operator="DataTypeCheck" Display="Dynamic" EnableClientScript="false" ErrorMessage="The funding amount must be numeric." runat="server" />
                                </itemtemplate>
                                </asp:datalist></td>
                        </tr>
                    <tr>
                    <td valign="middle" align="right" width="110">
                    <asp:label id="lblPreFund" CssClass="standard-bold" Runat="server">Sub Total   </asp:label>
                </td>
                    <td valign="middle" align="left" width="140">
                    <asp:textbox id="txtPreFundingTotal" tabIndex="15" CssClass="standard-text-gray" Runat="server" Columns="15" ReadOnly="true" AutoPostBack="false"></asp:textbox>
                <asp:comparevalidator ID="Comparevalidator1" ControlToValidate="txtPreFundingTotal" Type="Currency" Operator="DataTypeCheck" Display="Dynamic" EnableClientScript="false" ErrorMessage="The Funding Amount must be numeric." runat="server" />
                    </td>
                    </tr>
                        <tr>
                            <td colspan="2" align="center">
                                <br />
                                <asp:Button ID="cmdOK" runat="server" Text="OK" CssClass="command_button" Visible="true" OnClientClick="javascript:WindowClose();" />
                            </td>
                        </tr>
                    </table>
                    </center>                    
                </ContentTemplate>
            </telerik:RadWindow>
        </Windows>
    </telerik:RadWindowManager>

 

Javascript function that hides the window when "OK" is pressed:

           function WindowClose()
            {
                var oWindow = $find("<%= radPreWin.ClientID %>");
                oWindow.hide();
            }

Marin Bratanov
Telerik team
 answered on 25 Jul 2018
1 answer
146 views

Right now, I am working in administration dashboard. Inside dashboard there is a left side menu which can be expanded or can be collapsed.Let me show you its code,

 

<div id="main-menu" class="main-menu collapse navbar-collapse"><ul class="nav navbar-nav"><li><a href="index.html"><i class="menu-icon fa fa-dashboard"></i>Dashboard </a></li><h3 class="menu-title">UI elements</h3><!-- /.menu-title --><li class="menu-item-has-children dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown"aria-haspopup="true" aria-expanded="false"><i class="menu-icon fa fa-laptop"></i>Components
             </a><ul class="sub-menu children dropdown-menu"><li><i class="fa fa-puzzle-piece"></i><a href="ui-buttons.html">Buttons</a></li><li><i class="fa fa-id-badge"></i><a href="ui-badges.html">Badges</a></li><li><i class="fa fa-bars"></i><a href="ui-tabs.html">Tabs</a></li><li><i class="fa fa-share-square-o"></i><a href="ui-social-buttons.html">Social Buttons</a></li><li><i class="fa fa-id-card-o"></i><a href="ui-cards.html">Cards</a></li><li><i class="fa fa-exclamation-triangle"></i><a href="ui-alerts.html">Alerts</a></li><li><i class="fa fa-spinner"></i><a href="ui-progressbar.html">Progress Bars</a></li><li><i class="fa fa-fire"></i><a href="ui-modals.html">Modals</a></li><li><i class="fa fa-book"></i><a href="ui-switches.html">Switches</a></li><li><i class="fa fa-th"></i><a href="ui-grids.html">Grids</a></li><li><i class="fa fa-file-word-o"></i><a href="ui-typgraphy.html">Typography</a></li></ul></li><li class="menu-item-has-children active dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="menu-icon fa fa-table"></i>Tables
           </a><ul class="sub-menu children dropdown-menu"><li><i class="fa fa-table"></i><a href="tables-basic.html">Basic Table</a></li><li><i class="fa fa-table"></i><a href="tables-data.html">Data Table</a></li></ul></li><li class="menu-item-has-children dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="menu-icon fa fa-th"></i>Forms
           </a><ul class="sub-menu children dropdown-menu"><li><i class="menu-icon fa fa-th"></i><a href="forms-basic.html">Basic Form</a></li><li><i class="menu-icon fa fa-th"></i><a href="forms-advanced.html">Advanced Form</a></li></ul></li><h3 class="menu-title">Icons</h3><!-- /.menu-title --><li class="menu-item-has-children dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="menu-icon fa fa-tasks"></i>Icons</a><ul class="sub-menu children dropdown-menu"><li><i class="menu-icon fa fa-fort-awesome"></i><a href="font-fontawesome.html">Font Awesome</a></li><li><i class="menu-icon ti-themify-logo"></i><a href="font-themify.html">Themefy Icons</a></li></ul></li><li><a href="widgets.html"><i class="menu-icon ti-email"></i>Widgets </a></li><li class="menu-item-has-children dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="menu-icon fa fa-bar-chart"></i>Charts</a><ul class="sub-menu children dropdown-menu"><li><i class="menu-icon fa fa-line-chart"></i><a href="charts-chartjs.html">Chart JS</a></li><li><i class="menu-icon fa fa-area-chart"></i><a href="charts-flot.html">Flot Chart</a></li><li><i class="menu-icon fa fa-pie-chart"></i><a href="charts-peity.html">Peity Chart</a></li></ul></li><li class="menu-item-has-children dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="menu-icon fa fa-area-chart"></i>Maps</a><ul class="sub-menu children dropdown-menu"><li><i class="menu-icon fa fa-map-o"></i><a href="maps-gmap.html">Google Maps</a></li><li><i class="menu-icon fa fa-street-view"></i><a href="maps-vector.html">Vector Maps</a></li></ul></li><h3 class="menu-title">Extras</h3><!-- /.menu-title --><li class="menu-item-has-children dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="menu-icon fa fa-glass"></i>Pages</a><ul class="sub-menu children dropdown-menu"><li><i class="menu-icon fa fa-sign-in"></i><a href="page-login.html">Login</a></li><li><i class="menu-icon fa fa-sign-in"></i><a href="page-register.html">Register</a></li><li><i class="menu-icon fa fa-paper-plane"></i><a href="pages-forget.html">Forget Pass</a></li></ul></li></ul><%--<telerik:RadPanelBar ID="rpb_menu" runat="server" DataValueField="view_index" DataTextField="description" ExpandMode="MultipleExpandedItems" DataFieldID="activity_id"DataFieldParentID="parent_id" AllowCollapseAllItems="false" Height="100%" Width="100%" EnableEmbeddedSkins="true" Skin="Glow" BorderStyle="None" BackColor="#272C33" OnItemDataBound="rpb_menu_ItemDataBound"></telerik:RadPanelBar>--%> </div>

 

 

So as you could see there is some hard coded <ul> and <li>s out there and I need to replace it's content and those content will be populated from database.

<table><thead><tr><th title="Field #1">activity_id</th><th title="Field #2">parent_id</th><th title="Field #3">description</th></tr></thead><tbody><tr><td>29</td><td>34</td><td>Topic Management</td></tr><tr><td>30</td><td>34</td><td>Subject Management</td></tr><tr><td>31</td><td>34</td><td>Syllabus Management</td></tr><tr><td>34</td><td>NULL</td><td>LMS</td></tr><tr><td>35</td><td>34</td><td>Question Management</td></tr><tr><td>36</td><td>34</td><td>Online Test Management</td></tr><tr><td>37</td><td>34</td><td>Give Online Test</td></tr></tbody></table>

 

Please run snippet to view content which will be shown in place of hard coded content as shown below,

<li class="menu-item-has-children dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="menu-icon fa fa-laptop"></i>LMS(From database)</a><ul class="sub-menu children dropdown-menu"><li><i class="fa fa-puzzle-piece"></i><a href="ui-buttons.html">Topic Management (from database)</a></li><li><i class="fa fa-id-badge"></i><a href="ui-badges.html">Subject Management(From database)</a></li></ul></li>

Now, I wanna know If I could get desired output using RadPanelBar control?

 

Note:- What I am getting If I'm using RadPanelBar control..

 

<div id="ctl00_rpb_menu" class="RadPanelBar RadPanelBar_Glow" style="background-color:#272C33;border-style:None;height:100%;width:100%;"><br> <ul class="rpRootGroup"><br>      <li class="rpItem rpFirst"><a href="#" class="rpLink rpRootLink rpExpandable panelbarHeaderCollapsed rpFocused"><span class="rpOut"><img alt="" src="images/menu/useradmin.png" class="rpImage"><span class="rpExpandHandle"></span><span class="rpText">User Management</span></span></a><div class="rpSlide"><br>           <ul class="rpGroup rpLevel1 "><br>                <li class="rpItem rpFirst"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Users Profile</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Language Settings</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Users/Branch &amp; Academic Registration</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Stuff Creation</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">User Authorization</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">User Tree</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">User Role Assaign</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Branch To Branch Linking</span></span></a></li><li class="rpItem rpLast"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">User Leads</span></span></a></li><br>          </ul><br>     </div></li><li class="rpItem"><a href="#" class="rpLink rpRootLink rpExpandable panelbarHeaderCollapsed"><span class="rpOut"><img alt="" src="images/menu/pms.png" class="rpImage"><span class="rpExpandHandle"></span><span class="rpText">PMS</span></span></a><div class="rpSlide"><br>            <ul class="rpGroup rpLevel1 "><br>                <li class="rpItem rpFirst"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Earn Points Set</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Consume Points Set</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Earn Points Set(Adv.)</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Consume Points Set(Adv.)</span></span></a></li><li class="rpItem rpLast"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Pakage Creation</span></span></a></li><br>           </ul><br>     </div></li><li class="rpItem"><a href="#" class="rpLink panelbarHeaderCollapsed rpRootLink rpExpandable"><span class="rpOut"><img alt="" src="images/menu/lms.png" class="rpImage"><span class="rpExpandHandle"></span><span class="rpText">LMS</span></span></a><div class="rpSlide"><br>            <ul class="rpGroup rpLevel1 "><br>                <li class="rpItem rpFirst"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Topic Management</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Subject Management</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Syllabus Management</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Question Management</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Online Test Management</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Give Online Test</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Create Board Institution</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Class Management</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Course Management</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Subject Code Management</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Syllabus Management Permission</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Syllabus Authorization</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Assign Test</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Course Design</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Template Creation</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Check Exam</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">AssignFaculty</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">CheckResult</span></span></a></li><li class="rpItem rpLast"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Lecture And Notes</span></span></a></li><br>            </ul><br>     </div></li><li class="rpItem"><a href="#" class="rpLink panelbarHeaderCollapsed rpRootLink rpExpandable"><span class="rpOut"><img alt="" src="images/menu/accounts.png" class="rpImage"><span class="rpExpandHandle"></span><span class="rpText">Account</span></span></a><div class="rpSlide"><br>           <ul class="rpGroup rpLevel1 "><br>                <li class="rpItem rpFirst rpLast"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Refer users</span></span></a></li><br>         </ul><br>     </div></li><li class="rpItem"><a href="#" class="rpLink panelbarHeaderCollapsed rpRootLink rpExpandable"><span class="rpOut"><img alt="" src="images/menu/general.png" class="rpImage"><span class="rpExpandHandle"></span><span class="rpText">General</span></span></a><div class="rpSlide"><br>            <ul class="rpGroup rpLevel1 "><br>                <li class="rpItem rpFirst rpLast"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Query Management</span></span></a></li><br>            </ul><br>     </div></li><li class="rpItem"><a href="#" class="rpLink panelbarHeaderCollapsed rpRootLink rpExpandable"><span class="rpOut"><img alt="" src="images/menu/lead_management.png" class="rpImage"><span class="rpExpandHandle"></span><span class="rpText">Lead Management</span></span></a><div class="rpSlide"><br>            <ul class="rpGroup rpLevel1 "><br>                <li class="rpItem rpFirst"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Lead Master</span></span></a></li><li class="rpItem rpLast"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Follow Up</span></span></a></li><br>           </ul><br>     </div></li><li class="rpItem rpLast"><a href="#" class="rpLink rpRootLink rpExpandable panelbarHeaderCollapsed"><span class="rpOut"><img alt="" src="images/menu/finance.png" class="rpImage"><span class="rpExpandHandle"></span><span class="rpText">Finance</span></span></a><div class="rpSlide"><br>         <ul class="rpGroup rpLevel1 "><br>                <li class="rpItem rpFirst"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText"><br>Create Fees</span></span></a></li><li class="rpItem"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Schedule Fee Collection Dates</span></span></a></li><li class="rpItem rpLast"><a href="#" class="rpLink panelbarInnerCollapsed"><span class="rpOut"><span class="rpExpandHandle"></span><span class="rpText">Collect Fees</span></span></a></li><br>          </ul><br>     </div></li><br> </ul><input id="ctl00_rpb_menu_ClientState" name="ctl00_rpb_menu_ClientState" type="hidden" autocomplete="off"><br></div>
Rumen
Telerik team
 answered on 25 Jul 2018
1 answer
117 views

Usually I use the MVC components, and understand that grid really well, but this is the first time using this version of the grid (UI for APS.NET AJAX), and am not familiar with it at all.  I have the option of AllowAutoUpdates marked as true, but when I click the edit link, the form that displays for editing really looks bad.  The form field captions all seem to be aligned to the left, but the form fields are way over to the right.  How can I make this look better?

 

 

Joe
Top achievements
Rank 1
 answered on 24 Jul 2018
8 answers
622 views
Hi,

many Telerik controls can be localized using the given .resx files in App_GlobalResources. Is this also possible for the calendar controls (RadDateTimePicker, RadDatePicker, ...)? We are currently using Q3 2011.

Thanks!

Eyup
Telerik team
 answered on 24 Jul 2018
1 answer
99 views

Hi There,

I have come back to a system I coded 2 years ago. The code worked fine when I last worked on the web app but now I am getting the attached errors.

Does anyone have any ideas why I'm getting these errors.

 

Thanks for your help.

 

Best Regards,

 

Steve.

 

Rumen
Telerik team
 answered on 24 Jul 2018
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?