Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
67 views
I have a user control A in which a RadTreeview is added and another user control B which hold a RadListView. I am looking a way to implement drag items from B to A   I used the onitemdrop event of listview, but the same is showing destinationhtmlelement as null when dropped on to the treeview of A. Also the onnodedropped event of treeview in A is not firing when i dropped from B to A. Can some one explain how can I implement this?
Smash
Top achievements
Rank 1
 asked on 12 Sep 2013
1 answer
67 views
Hello, Im basically trying to duplicate the Scheduler Overview sample. I have the scheduler loading all the appointments but the resource filter is not updating the scheduler. In debug I see that the clientside rebind is correctly calling the asmx GetAppointments when I click to uncheck or check a resource but nothing happens. I move between days and still the appointments will not filter. I have Scheduler inside a panel and the panel is setup correctly with RadAjaxManager. Not sure if it matters but I have this setup on a page in my Sitefintiy site. All the other controls on the this page are inside the same panel and working correctly so I don't thing it is an Ajax setup issue. Again the scheduler seems to load perfect but just cant use the resource filter.

My Telerik version is: 2012.2.607.40. Below are my ajaxManager settings (set on the code behind).

Thank you,
manager = RadAjaxManager.GetCurrent(Page);
manager.AjaxSettings.AddAjaxSetting(this.pnlTop, this.pnlTop, this.RadAjaxLoadingPanel1);
manager.AjaxRequest += this.ajaxManager_AjaxRequest;


Kate
Telerik team
 answered on 12 Sep 2013
3 answers
141 views
Dear All,
I'm trying to use the RadScheduler with SelectedView="TimelineView" .
I need to set auto-resize the height of scheduler according to the number of elements shown in the left column of the scheduler.
As you can see in the attached images (theshed_fail.png ) the appointment row related to "luna" is not shown becouse there are any appointment related to the row "xcvczx", so everything comes up.
In the second image, I forced (by firebug) the height of rsTimelineTable class. Obviously I'd like to set the row height that does't depend to the number of items in the left part.
I hope that I was clear.
Thank you in advance

Paolo
Plamen
Telerik team
 answered on 12 Sep 2013
1 answer
136 views
hi,

I have tile list view with few tiles having dynamic data binding and few are static. Now when I am trying to drag tile from one place to another, it got crash and giving me script error (please find attached screenshot).
Slav
Telerik team
 answered on 12 Sep 2013
1 answer
117 views
I am using Rad Editor version -2010.3.1109.35.

My changes for RadEditor
1.)In ToolsFile by adding "RealFontSize"

 <tools name="MainToolbar" enabled="true">
    <tool name="Bold" />
    <tool name="Italic" />
    <tool name="Underline" />
    <tool separator="true"/>
    <tool name="FontName" />
    <tool separator="true"/>
    <tool name="RealFontSize" />
    <tool separator="true"/>
    <tool name="ForeColor" />
  </tools>
 <realFontSizes>
    <item value="8pt"></item>
    <item value="9pt"></item>
    <item value="10pt"></item>
    <item value="11pt"></item>
    <item value="12pt"></item>
    <item value="14pt"></item>
    <item value="16pt"></item>
    <item value="18pt"></item>
    <item value="20pt"></item>
    <item value="22pt"></item>
    <item value="24pt"></item>
    <item value="26pt"></item>
    <item value="28pt"></item>
    <item value="36pt"></item>
    <item value="48pt"></item>
    <item value="72pt"></item>
  </realFontSizes>
2.)Added event   txtRichTextEditor.OnClientSelectionChange = "OnClientSelectionChange";
    To convert px to pts

   function OnClientSelectionChange(editor, args) {
              var tool = editor.getToolByName("RealFontSize");
            if (tool) {
                setTimeout(function () {
                    var toolval = tool.get_value();
                    if (toolval.indexOf("px") != -1) {
                        var pointval = Math.round(parseInt(toolval) * 0.75) + "pt";
                        tool.set_value(pointval);
                    }
                }, 0);
            }
        }
3.)Content area css file
body
{
   font-family: Arial !important;
   font-size: 14px !important;
   color: black !important;
   background-color: white !important;
   text-align: left !important;
}
blockquote
{
    margin-left:40px !important;
    margin-bottom:0px !important;
    margin-right:0px !important;
    margin-top:0px !important;
}


I am facing two problems in IE9(Working fine in other browsers  like Mozilla,chrome & safari)

1.)Arial font is selected for MS Sans Serif (Other Fonts are working fine,only problem with MS Sans Serif)

Steps to reproduce:
  • Load RadEditor I.E 9 browser. 
  • Enter some text in text editor
  • Now change font style to 'MS Sans Serif' and enter some text.

Observe: MS Sans Serif will not be applied to the new text entered.
               Some times the Font name drop down also will not be changed to MS Sans Serif

2.)when clicked multiple times on Numbered list and Bullet List

Steps to reproduce:

    • Load RadEditor I.E 9 browser. 
    • Enter some text in text editor
    • Now click on Numbered List/Bullet List buttons for multiple times in text editor 

Observe :   Observe that the text is seen getting Indent in text editor on clicking Numbered and Bullet List buttons for multiple times.
                   PFA screenshot



Please give me a solution to fix these changes in my current version.(Do not want to upgrade now).
Please let me know if want any clarification/doubts in replicating the issue

.



Ianko
Telerik team
 answered on 12 Sep 2013
3 answers
240 views
I've tried and failed to right align the menu at:

http://gonative.propona.co.uk/Home.aspx

Google returned a few hits but nothing worked so suggestions welcome and more than happy to provide further details to facilitate. I've tried playing with the RadMenu and rmText styling but no joy as yet.

Update: it seems to be picking up an errant padding-right setting from WebResource.axd which isn't in my stylesheet and I can't seem to override it there.

Ta.

Chris.
Genady Sergeev
Telerik team
 answered on 12 Sep 2013
1 answer
135 views
Hi,
i have 1 radgrid in which i am using editmode and automatic insert mode,so i want
1. some css for these textbox to do(rounded corner,mouse hover,focus and width)

2.some margin before top textbox  to give heading

Thanks
Jayesh Goyani
Top achievements
Rank 2
 answered on 12 Sep 2013
1 answer
88 views
I was using a 2010 release of Telerik ASP.NET RadGrid until yesterday.  Since upgrading to the latest 2013 release whenever I load or refresh the web page I notice the RadGrids first display at a certain size then shrink slightly, almost like it is padding rows with too much space initiallyt and then shrinking.  What is causing that?
Galin
Telerik team
 answered on 12 Sep 2013
3 answers
186 views
Hi,

I would like to ask what I have to do to enable pasting image from clipboard as it works in the editor demo: (http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx). I have to use it in my web app and your editor is the main reason for buying Telerik components.

Thank you for help,

Honza
Rumen
Telerik team
 answered on 12 Sep 2013
1 answer
91 views
Hi Team

I m using telerik RadGrid into my website. When number of records increases into the grid I have set Scrolling property is true By which a scroll bar added into the Grid . But when scroll bar added into the grid headings are not aligned to the records. But when i set use Static header property false then it working fine. Also when i open the firebug this automatically correct . In addition it working fine IE10 but this problem occur in only FireFox and Chrome (latest).

I have attached the screen shot of grid to increase understandability . Pls reply  me as per as possible to fix this bug 


Thanks
Malkiat
Venelin
Telerik team
 answered on 12 Sep 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
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
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
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
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?