Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
87 views
Hello
I'm trying to combine those two samples in a functional demo
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandinput/defaultcs.aspx?product=grid

http://demos.telerik.com/aspnet-ajax/grid/examples/groupby/groupfooter/defaultcs.aspx


My goal is to have RadNumericTextBox in the footer totals for each group area.
Could you please help me?
Best regards
Philippe
Pavlina
Telerik team
 answered on 03 Aug 2010
3 answers
61 views
Hi I have a rad grid and when ever I debug it, I always get this dynamic JS error...

Webpage Error: do u want to debug this webpage..if I click yes....I get Micrsoft JS runtime error: Object required..

Here is that JS code
<script language="javascript" type="text/javascript">

        function GridCreated(sender, args)

         {

            var scrollArea = sender.GridDataDiv;

            var dataHeight = sender.get_masterTableView().get_element().clientHeight;

            if(dataHeight < 350)

            {

scrollArea.style.height =dataHeight + 250 + "px";-------------------------at this line is the error.

 

            }

         }

         </script> 
Martin
Telerik team
 answered on 03 Aug 2010
5 answers
243 views
When typing into a combo box using Safari or Firefox the autocomplete text is not cleared when the input text does not match an existing item i.e. when typing Loughton this will autoselect Loughborough and will not clear unless I delete the autocompleted text.
Simon
Telerik team
 answered on 03 Aug 2010
2 answers
81 views
Hello,

I use RadEditor to edit pages in a wiki library in MOSS 2007.
I predefined the following paragraphs to be used in the FormatBlock dropdown:

  <paragraphs>
   <paragraph name="&lt;p class='Schrift_normal'>Normal&lt;/p>" value="&lt;p class='Schrift_normal'>" />
   <paragraph name="&lt;p class='Schrift_klein'>Klein&lt;/p>" value="&lt;p class='Schrift_klein'>" />
   <paragraph name="&lt;h1 class='Gliederungspunkt'>Gliederungspunkt&lt;/h1>" value="&lt;h1 class='Gliederungspunkt'>" />
   <paragraph name="&lt;h2 class='Ueberschrift_1'>Überschrift 1&lt;/h2>" value="&lt;h2 class='Ueberschrift_1'>" />
   <paragraph name="&lt;h3 class='Ueberschrift_2'>Überschrift 2&lt;/h3>" value="&lt;h3 class='Ueberschrift_2'>" />
  </paragraphs>

I explicitly want the H2 html tag in my example to be called "Überschrift 2" (I am using the German language localization)
The problem is when I click on a text that is enclosed in H2 tags <h2 class='Ueberschrift_1'>some text<h2>, the FormatBlock displays "Überschrift 2" instead of "Überschrift 1", which I predefined!
The same happens when I click on a text enclosed by <H1> tags. Instead of "Gliederungspunkt", the FormatBlock displays "Überschrift 1".
Is there any way to control what is being displayed in the FormatBlock dropdown on the OnClick event?

Thank you in advance!
Best regards,
Dimitar Kuzumski
Berufsgennosenschaft Metall Nord Süd
Mainz, Germany
Rumen
Telerik team
 answered on 03 Aug 2010
1 answer
142 views
In the MasterPage File I have:

<telerik:RadScriptManager ID="ScriptManager1" runat="server" CdnSettings-BaseUrl="~/Scripts" EnableHistory="False" EnablePageMethods="False"
    EnableScriptGlobalization="False" OutputCompression="AutoDetect" AsyncPostBackTimeout="900">
    <Scripts>
        <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
        <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
    </Scripts>
</telerik:RadScriptManager>

Next, in the page, I have RadScheduler with Ajax-Updated engine.
But after changing the view: month -> day, needed scripts are not loaded and scheduler can not work...

How can I update the "script manager" with ajax?
I think it is connected with the CdnSettings-BaseUrl="~/Scripts" setting.
T. Tsonev
Telerik team
 answered on 03 Aug 2010
4 answers
1.7K+ views
Hi, I just recently came across the following error "These columns don't currently have unique values"

After troubleshooting I came across the problem but I still do not know of a solution. I will describe the problem
in further detailing including my troubleshooting steps.

The problem with the above error seems to be related to multiple child items which each belongs to
different parent nodes.

After going through testing the store procedure and rerunning the application, I modified the stored procedure and discovered that if I returned several child items with the same id regardless if it belongs to a separate parent then the above error will occur.

For example:

ParentID    ID        Name

null            1        "John"
null            2         "Ben"
1                9        "apples"
1                10      "pears"
2                9        "pears"
2                11     "bananas"

but if I removed the column 2, 9, "pears" then it will work such as

ParentID    ID        Name

null            1        "John"
null            2         "Ben"
1                9        "apples"
1                10      "pears"
2                11     "bananas"

Please help because I am stumped on this functionality and would like it working soon as it is the final piece of code to get the entire feature functioning correctly.

Regards

Nikolay Tsenkov
Telerik team
 answered on 03 Aug 2010
2 answers
171 views
Hi,

   I need to be able to check the status and prompt the user for save when the user is moving out of the current tab. I have lot of controls under each tab. Is there any way or property that can give me if the user has updated and has unsaved data. 

Thanks in advance. 
usr9999
Top achievements
Rank 1
 answered on 03 Aug 2010
1 answer
63 views
Is it possible to set this checkbox to true by default?
Rumen
Telerik team
 answered on 03 Aug 2010
2 answers
116 views
I am using RADAjaxManager in my page. I am having issues with it.
I have RadComboBox1, RadComboBox2, RadComboBox3, RadTextBox1 and RadTexBox2 on the page. I have the functionality built in as follows. Now I am trying to use the RADAjaxManager which is breaking the functionality. 
    1) ComboBox1 has 2 values.
    2) When user selects value 1 from the ComboBox1
        a. ComboBox3 should be disabled
        b. Clear text1 and text2 and disable them
        c. ComboBox2 should be populated from database 
        d. When user selects a value from combobox2 , assign values to text1 and text2  
    3) When user selects value 2 from the ComboBox1
        a. ComboBox2 should be disabled
        b. Clear text1 and text2 and enable them for data entry
        c. ComboBox3 should be populated from database

The functionality is working well until I add the following entries. It looks like the clearing text boxes are not being done

<telerik:RadAjaxManager runat="server" ID="RadAjaxManager1">
   <AjaxSettings>
<telerik:AjaxSetting AjaxControlID=" RadComboBox1">
         <UpdatedControls>
           <telerik:AjaxUpdatedControl ControlID=" RadComboBox2" />
           <telerik:AjaxUpdatedControl ontrolID=" RadComboBox3" />
            <telerik:AjaxUpdatedControl ControlID="RadTextBox1" />
            <telerik:AjaxUpdatedControl ControlID="RadTextBox2" />
           
         </UpdatedControls>
      </telerik:AjaxSetting>
      <telerik:AjaxSetting AjaxControlID=" RadComboBox2">
          <UpdatedControls>
             <telerik:AjaxUpdatedControl ControlID="RadTextBox1" />
             <telerik:AjaxUpdatedControl ControlID="RadTextBox2" />
          </UpdatedControls>
      </telerik:AjaxSetting>
    <AjaxSettings>
 </telerik:RadAjaxManager>

Note sure where i am going wrong! Please help.
usr9999
Top achievements
Rank 1
 answered on 03 Aug 2010
1 answer
88 views
Dear Telerik Team,

I am working with multiple resource grouping in scheduler. In your demo of resource grouping able to group with date and rooms. I need to group with rooms and with other parameter I am unable to group as you people did in your demo application by giving another parameter instead of Date. Is there any way to group resources with different parameters?
I hope you understand the problem please find a reference link of your demo application.

http://demos.telerik.com/aspnet-ajax/scheduler/examples/resourcegrouping/defaultcs.aspx



Thanks and Regards
--------------------------
Pradeep
Veronica
Telerik team
 answered on 03 Aug 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?