Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
91 views
Hello,

I would like to know if the RadControls Chart allows ClickEvent on the chart to pick the coordinates of plot area. My wish is to draw simple lines with two points got with Click Event, the drawn line superposes on the graph generated by Chart control.

I see that the RadChart has Attributes features allowing to add Javascript but it is for the whole region and not for a precised point in the plot area. So, this feature is not applicable in my case.

RadChart1.Series[0].Items[i].ActiveRegion.Attributes = "onmouseover=\"this.parentNode.parentNode.style.cursor = 'default';\" onmouseout=\"this.parentNode.parentNode.style.cursor = '';\" onclick=\"return false;\""

Any ideas are welcome. Thanks and best regards


Mhlai
         

Dessy
Telerik team
 answered on 13 May 2009
5 answers
160 views
Hi Telerik Team,

 I am using RadTimePicker control and setting mindate to the systemdate so that user cant allow past times. If user enters manually a past time, the control shows red color signalling error.
 But when I do a postback (user clicks Save button) I want to show user that user entered a wrong time, but instead the selecteddate property returns the default time instead of the user entered incorrect time. So how can I catch this on the server side, or alternatively dont allow user to manually enter incorrect times. I need soem solution urgently.

Thanks,
Abhishek
Sebastian
Telerik team
 answered on 13 May 2009
1 answer
440 views
Hello i want to give the CheckBoxColumn a default value = true, how to set this value??
Princy
Top achievements
Rank 2
 answered on 13 May 2009
3 answers
75 views
I've built a CMS for one of my company's projects and had to resort to using a frame with the javascript design mode execCommand functionality to allow users to modify the HTML for content pages.  This was a temporary solution until a much better editor could be built or purchased.  I'm doing some research and the Telerik suite seems to have everything I'm looking for (customizability of tools, unlimited deployment license, AJAX driven, easy to use).  I downloaded the trial and am currently looking at it to see how easily the RadEditor will be able to slide in and take the place of the current HTML editor in our projects without having to rearchitect the existing systems.

I'm a minimalist developer.  I don't use IDEs like visual studio to produce my .NET applications.  I use textpad and I compile the dlls with a shell script.  Needless to say, first glance at the installed directory of the trial is pretty overwhelming with many more files than even my entrire system.  I'm looking for any resources that you could point me to that explains which dlls, javascript files and css files that I need if I wish to use only pieces of the suite or tutorials that don't assume I'm using visual studio.

Other than that, it seems like an impressive suite, and I hope that I can improve my applications with it.
Tervel
Telerik team
 answered on 13 May 2009
1 answer
146 views
Hi,

We are declaring global values for setting Margin and padding to 0 in the css file

*

{

                margin: 0;

                padding: 0;

               

}


This value is being then overwritten for specific elements (e.x. P tags) further down in the css, which is recognized by all the browsers. However, this value is setting the margin's and Padding's to all elements in the Editor to 0 and ignoring the overwritten values defined in the CSS

Example is

p{
margin-bottom: 10px
}

Editor ignores this margin specifically definef for p and uses the global margin which is the first in the CSS file

Please let usknow if this is something that can be fixed

Thanks

Kalpesh
Martin
Telerik team
 answered on 13 May 2009
1 answer
121 views
is there anything like the model popup? if so please let me know if there's an example.. thank you.
Princy
Top achievements
Rank 2
 answered on 13 May 2009
5 answers
162 views
I want to create a grid (e.g. with customerid, name and adress) and place inside one of its GridTemplateColumns another Grid, that shows data dependent on the customers ID (e.g. orders).

I know i can achieve this very easily with the MasterTableView/DetailTables
but i dont like the way the data is presented there (i need everything displayed horizontally).

Does anybody know, how this can be achieved?
LiZ0r
Top achievements
Rank 1
 answered on 13 May 2009
1 answer
205 views
hello,
How do i get the coordinates (X Y) of cell of a radgrid control on the server side ?
Thanks
Shinu
Top achievements
Rank 2
 answered on 13 May 2009
0 answers
90 views
I have a telerik grid that I recently enabled pagging on.  For some Reason the images that allow the user to move through the pages are missing.  

I have a screen capture to show the image and where the buttons are missing http://cid-d277c11ef8b7f500.skydrive.live.com/self.aspx/Public/RadGrid.JPG


 

<telerik:RadGrid ID="grdAllGraphics" runat="server" AutoGenerateColumns="False"

 

 

GridLines="None" Skin="Web20" Width="300px" AllowMultiRowSelection="True"

 

 

AllowCustomPaging="True" AllowPaging="True" PageSize="2" ShowFooter="True"

 

 

ShowGroupPanel="True" ShowStatusBar="True">

 

 

<PagerStyle AlwaysVisible="True" NextPageToolTip="Where is this" BorderStyle="Solid" PageButtonCount="2" />

 

 

<MasterTableView>

 

 

<RowIndicatorColumn>

 

 

<HeaderStyle Width="20px" />

 

 

</RowIndicatorColumn>

 

 

<ExpandCollapseColumn>

 

 

<HeaderStyle Width="20px" />

 

 

</ExpandCollapseColumn>

 

 

<Columns>

 

 

 

 

 

 

<telerik:GridTemplateColumn

 

 

UniqueName="CheckBoxTemplateColumn">

 

 

<ItemTemplate>

 

 

<asp:CheckBox

 

 

ID="CheckBox1" runat="server"

 

 

OnCheckedChanged="ToggleRowSelection"

 

 

AutoPostBack="True"

 

 

/>

 

 

</ItemTemplate>

 

 

 

</telerik:GridTemplateColumn>

 

 

 

 

<telerik:GridBoundColumn DataField="PartNo" HeaderText="Part #"

 

 

UniqueName="column">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="Description" HeaderText="Description"

 

 

UniqueName="column1">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridTemplateColumn HeaderText="Graphic" UniqueName="TemplateColumn">

 

 

<ItemTemplate>

 

 

<asp:HyperLink ID="HyperLink1" Target="_blank" NavigateUrl ='<%# Eval("ImagePath") %>' runat="server"> <img ALT='' src='<%# Eval("ImagePath") %>' width='75'/> </asp:HyperLink>

 

 

 

</ItemTemplate>

 

 

</telerik:GridTemplateColumn>

 

 

 

<telerik:GridBoundColumn DataField="GraphicInventoryID" UniqueName="GraphicInventoryID" >

 

 

</telerik:GridBoundColumn>

 

 

</Columns>

 

 

 

 

 

</MasterTableView>

 

 

<ClientSettings AllowRowsDragDrop="False">

 

 

<Selecting AllowRowSelect="True" />

 

 

</ClientSettings>

 

 

</telerik:RadGrid>

 

Adam Pehas
Top achievements
Rank 1
 asked on 12 May 2009
2 answers
100 views
I have seen the "3D" referred to in a couple of the Telerik TV episodes, but I don't seem to have that in my list of choices within VS even with the latest build of ASP.NET Ajax.  Further reading also indicates I'm missing:  brick, and lime.

Anyone know where to get these (and any others available)?
MWM
Top achievements
Rank 1
 answered on 12 May 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?