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

Hi, i faced 2 problems

1. Error: Web.config registration missing! The Telerik dialogs require a HttpHandler registration in the web.config file.

I tried all the method as shown in the article, it still face the same problem. http://www.telerik.com/support/kb/aspnet-ajax/editor/details/error-web-config-registration-missing!-the-telerik-dialogs-require-a-httphandler-registration-in-the-web-config-file-

2. I got error page when i want to edit the page in Sharepoint 2013. It prompt me "Object reference not set to an instance of an object." 

Please help. Thank you. 

yeoh
Top achievements
Rank 1
 answered on 28 Apr 2017
1 answer
45 views

Hi Telerik Team,

heres my issue i have been working with detailtables on my sistem for a school the what it supposed to do its show me the grades of the students and i have a button outside the grid to export that to excel the thing is that the table needs to be expanded to show the grades because the student data its the parent  part and the grades are the child 2 days ago it worked now only one record from the table wont expand(automatically or pushing the lil arrow) but all the 200 records from the same sqldatasource works and since that one wont expand i cant export it what could it be? thanks.

 

 

Omar
Top achievements
Rank 1
 answered on 27 Apr 2017
0 answers
120 views

I'm using a Telerik maskedtextbox.  Let say the mask is '#####'.
I can enter 1-5 digits and all is good.

If I add a RegularExpressionValidator to the field, it will always fail unless I enter exactly the amount of digits specified in the mask.

ex.
just the maskedtextbox with mask '#####', I can enter 1, 11, 111, 1111, 11111 and all is good.
If I add a RegularExpressionValidator, it fails unless the input is 11111.

The regex expression works with anything as long as it's a number and only has issues when the masked textbox is used.
Stacy
Top achievements
Rank 1
 asked on 27 Apr 2017
1 answer
101 views

Hi,

The message in the ShowMoreResults box doesn't seem to appear with the latest official release (2017.1.228.45). 

It's easy to see using a very simple project with a combobox loading progressively from a web service - if you use an earlier version of the Telerik libraries the message appears, and then if you simply swap in the latest version the message no longer appears.

Rumen
Telerik team
 answered on 27 Apr 2017
3 answers
62 views

Hi,

My question is in continuation to the post here:

http://www.telerik.com/forums/radeditor-and-jquery-dialog#XU8vpR6BrEmEhKLz7S5qSA 

my radeditor inside the dialog is uneditable. I have a parent page and the jquerydialog is in that page. The dialog loads another page, which has RADeditor in it. Calling OnParentNodeChanged in the parent page will not work as the editor is not recognizable there. What can be done?

Thanks.

Anandi

Rumen
Telerik team
 answered on 27 Apr 2017
3 answers
2.0K+ views

PARENT PAGE
<telerik:RadWindowManager ID="RadWindowManager1" runat="server">
 <Windows>
  <telerik:RadWindow ID="ServerAdd" runat="server" Behavior="Close" Behaviors="Close" Modal="True" NavigateUrl="ServerAssignJob.aspx" style="display:none;" VisibleStatusbar="False" DestroyOnClose="True" OnClientClose="windowOnClientClose" MinHeight="600px" MinWidth="850px">
  </telerik:RadWindow>               
 </Windows>
</telerik:RadWindowManager>
<script type="text/javascript">
 function windowOnClientClose(sender, args) {  
  for (var i = 0; i < self.frames.length; i++) {
   
   var myFrame = self.frames[i].document.getElementById("RadPageViewServers");   

if (myFrame != undefined || myFrame != null) {
    //THIS DOESN'T WORK
    //myFrame.contentDocument.location.href = "ServerAssign.aspx";    
//myFrame does get the reference to the correct IFrame I can see the innerhtml and it looks correct.
    //THIS DOES NOT RELOAD THE PAGE
    myFrame.src = myFrame.src;
    
    
    //THIS DOES NOT WORK
    //JavaScript runtime error: Unable to get property 'location' of undefined or null reference
    //myFrame.contentDocument.location.reload(true);
    break;
   }   
   return false;
  }      }
</script>


CHILD IFRAME CONTENT URL = "ServerAssign.aspx"
It calls the radopen on parent page.

<script type="text/javascript" >
 function clickHandler(sender, eventArgs) {
 
 //Checks which item is clicked
 if (eventArgs.get_item().get_text() == "Add New") {
  
  var topWindow = window.top;
  var tab = topWindow.document.getElementById('RadWindowManager1');
  
  topWindow.radopen("ServerAssignJob.aspx", "ServerAdd");    
  return false;
 }    }</script>
John
Top achievements
Rank 1
 answered on 27 Apr 2017
6 answers
266 views
Hello,

My project contains a RadSplitter. It contains: RadTabStrip and RadMultiPage. Inside the RadMultiPage there is a RadPageView. Inside the RadPageView there is another RadSplitter.

The RadSplitter contains 3 RadPanes: RadPane_Header, RadPane_Main and RadPane_Footer. The RadPane_Header and the RadPane_Footer have a fixed size in pixels. The RadPane_Main should fill all the remaining space. The project’s requirements are that the RadPane_Header should dock to top of the page and the RadPane_Footer should dock to the bottom of the page. Also, it is required that the internal RadSplitter will fill 100% of the RadPageView’s size.

Currently the inner splitter’s size is much smaller than the size of the page.
Only when the user resizes the browser’s window, the inner splitter changes its size to the appropriate size, i.e. it resizes to fill the whole page.

Please see the following video:
http://youtu.be/uMm2FJEO4Ic


My code:
html, body, form, RadPageView
{
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}
    .ContentPane {
        height: auto !important;
    }

<div id="ParentDivElement" style="height: 100%;">
        <telerik:RadSplitter ID="MainSplitter" runat="server" Height="100%" Width="100%"
            Orientation="Horizontal" Skin="Outlook">
            <telerik:RadPane ID="TopPane" runat="server" Height="100" MinHeight="85" MaxHeight="150"
                Scrolling="none">
            </telerik:RadPane>
            <telerik:RadSplitBar ID="RadsplitbarTop" runat="server" CollapseMode="Forward" />
            <telerik:RadPane ID="MainPane" runat="server" Scrolling="none" MinWidth="500">
                <telerik:RadSplitter ID="NestedSplitter" runat="server" Skin="Outlook" LiveResize="true">
                    <telerik:RadPane ID="LeftPane" runat="server" Width="200" MinWidth="150" MaxWidth="400"></telerik:RadPane>
                    <telerik:RadSplitBar ID="VerticalSplitBar" runat="server" CollapseMode="Forward" />
                    <telerik:RadPane ID="ContentPane" runat="server" CssClass="ContentPane">
                        <telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1" SelectedIndex="0">
                            <Tabs>
                                <telerik:RadTab Text="Grid" Value="Grid1"></telerik:RadTab>
                                <telerik:RadTab Text="Chart" Value="Chart1"></telerik:RadTab>
                                <telerik:RadTab Text="Grid_Chart" Value="Grid_Chart"></telerik:RadTab>
                            </Tabs>
                        </telerik:RadTabStrip>
                        <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0">
                            <telerik:RadPageView ID="RadPageView1" runat="server"></telerik:RadPageView>
                            <telerik:RadPageView ID="RadPageView2" runat="server">
                                <div id="Div1" style="height: 100%;">
                                    <telerik:RadSplitter ID="RadSplitter_Chart" runat="server" Orientation="Horizontal" Height="100%" Width="100%">
                                        <telerik:RadPane ID="RadPane_Chart_Header" runat="server" Height="40">RadPane_Chart_Header</telerik:RadPane>
                                        <telerik:RadPane ID="RadPane_Chart_Main" runat="server" CssClass="RadPane_Chart_Main">RadPane_Chart_Main
                                            <telerik:RadGrid ID="RadGrid3" runat="server"></telerik:RadGrid></telerik:RadPane>
                                        <telerik:RadPane ID="RadPane1" runat="server" Height="50">RadPane_Chart_Header</telerik:RadPane>
                                    </telerik:RadSplitter></div>
                            </telerik:RadPageView>
                            <telerik:RadPageView ID="RadPageView3" runat="server"></telerik:RadPageView>
                        </telerik:RadMultiPage></telerik:RadPane>
                </telerik:RadSplitter></telerik:RadPane>
        </telerik:RadSplitter>
    </div>

 

How can I solve this?

Thank you,
Daniel.
Mike
Top achievements
Rank 1
 answered on 27 Apr 2017
0 answers
93 views

Hi there

I have a grid and one of the fields is a combobox.  There are only 5 items and the items to display are not datadriven.

If the editmode = Inplace, then I can click on the field and it shows the possible items in a list as you'd expect.

But if the editmode = Popup, then clicking on the field does not show the possible items and I have to use the up and down arrows to scroll through the items.

Any ideas?

 

Thanks

Cheryl
Top achievements
Rank 1
Iron
 asked on 26 Apr 2017
16 answers
1.2K+ views

ADMIN UPDATE

This issue will be fixed in Chrome 58, as an investigation path has been provided to the Chromium team: http://www.telerik.com/forums/error-telerik-web-ui-webresource#03pCYKiU5ku6u8t2pEluHA.

Bug report with Chromium: https://bugs.chromium.org/p/chromium/issues/detail?id=709064.

END ADMIN UPDATE

 

I'm receiving the following javascript error using Chrome on a web form.  Anyone have any ideas:

Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:6 Uncaught RangeError: Maximum call stack size exceeded
    at Sys.UI.DomElement.getElementById (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:6)
    at Function.AjaxControlToolkit.TextBoxWrapper.validatorGetValue [as _originalValidatorGetValue] (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27476)
    at Function.AjaxControlToolkit.TextBoxWrapper.validatorGetValue [as _originalValidatorGetValue] (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27478)
    at Function.AjaxControlToolkit.TextBoxWrapper.validatorGetValue [as _originalValidatorGetValue] (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27478)
    at Function.AjaxControlToolkit.TextBoxWrapper.validatorGetValue [as _originalValidatorGetValue] (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27478)
    at Function.AjaxControlToolkit.TextBoxWrapper.validatorGetValue [as _originalValidatorGetValue] (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27478)
    at Function.AjaxControlToolkit.TextBoxWrapper.validatorGetValue [as _originalValidatorGetValue] (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27478)
    at Function.AjaxControlToolkit.TextBoxWrapper.validatorGetValue [as _originalValidatorGetValue] (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27478)
    at Function.AjaxControlToolkit.TextBoxWrapper.validatorGetValue [as _originalValidatorGetValue] (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27478)
    at Function.AjaxControlToolkit.TextBoxWrapper.validatorGetValue [as _originalValidatorGetValue] (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27478)
Sys.UI.DomElement.getElementById @ Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:6
AjaxControlToolkit.TextBoxWrapper.validatorGetValue @ Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27476
AjaxControlToolkit.TextBoxWrapper.validatorGetValue @ Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27478
AjaxControlToolkit.TextBoxWrapper.validatorGetValue @ Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27478
AjaxControlToolkit.TextBoxWrapper.validatorGetValue @ Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ctl08_TSM&compress=1&_TSM_CombinedScripts_=%…:27478
AjaxControlToolkit.TextBoxWrapper.validatorGetValue @ Telerik.Web.UI.WebResource.axd?

Bradley
Top achievements
Rank 1
 answered on 26 Apr 2017
6 answers
133 views
I downloaded the Telerik ASP.NET UI ASO.NET_AJAX_2017_1_228_Dev.msi and installed the software on my computer
successfully.
I then tried to checkin the changes to TFS (team server foundation) 2010, and the TFS said it was going to undo the changes
place them back the way the were on the server. The only option buttons I had were OK or help.
When I did a compare in TFS of the files on my worksation versus what was in TFS on the server there is no difference. However
when I look at the modified dates through windows explorer in the bin folder with the file names that start with Telerik, there are todays date.
Thus I cannot tell if the latest version of the Telerik tool is actually installed on my worksation. From my test environment on my workstation, I want
to deploy the .net 2010 web form application with the latest telerik tool changes to the test application server.
Note: I tried a Telerik uninstall and reinstall on my workstation and got the same results.
Thus can you tell me what I need to look for to determine if I actually have the latest Telerik release to load to my test application server?
Thus if I have the latest version on the telerik tool on my workstation, would you tell me how can I place the file changes into TFS? What files would I be looking for?
If the Telerik tool is not on my workstation, what can I do to get the latest Telerik tool on my workstation?
diane
Top achievements
Rank 1
 answered on 26 Apr 2017
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?