Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
85 views
Hi,

I'm currently using a RadNumericTextBox to let users enter a number. I don't want any limitation on the number of decimals though, be it at input time or at display time.

I'm finding that right now the NumberFormat-DecimalDigits will limit me to a certain number of decimals (defaulted to 2).

Is it possible to remove that limitation? E.g. be able to enter any number, for example 1 or 1.456 or 8.93940 and keep it as is?
Nicolas
Top achievements
Rank 1
 answered on 01 Oct 2009
1 answer
76 views
It seems that by default the editor works by formatting text only when it is highlited. I want to be able to format the entire text that is typed into the editor whenever a user makes a format selection,ie. when clicking bold or italics. I want the format to take place over the entire text not just what has been highlited. Is there not a mode that I can set for this control to behave this way? Thanks.
jay
Rumen
Telerik team
 answered on 01 Oct 2009
2 answers
106 views
Hey , I'm looping through a heairarchichal rad grid with 1 lkinkbutton in each section
I'm checking if the length is over a ceratin number and if it is, shorten it and add a tooltip....fairly standard stuff

 Private Sub RadGrid1_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles RadGrid1.ItemDataBound 
 
        If e.Item.ItemType = GridItemType.Item Then 
 
            Dim linkbutton1 As LinkButton = e.Item.FindControl("linkbutton1") 
            If linkbutton1 Is Nothing Then 
            Else 
 
                If linkbutton1.Text.Length > 30 Then 
 
                    linkbutton1linkbutton1.ToolTip = linkbutton1.Text 
                    linkbutton1linkbutton1.Text = linkbutton1.Text.Substring(0, 40) + "..." 
                End If 
            End If 
 
            Dim linkbutton2 As LinkButton = e.Item.FindControl("linkbutton2") 
            If linkbutton2 Is Nothing Then 
            Else 
 
                If linkbutton2.Text.Length > 30 Then 
 
                    linkbutton2linkbutton2.ToolTip = linkbutton2.Text 
                    linkbutton2linkbutton2.Text = linkbutton2.Text.Substring(0, 40) + "..." 
                End If 
            End If 
 
            Dim linkbutton3 As LinkButton = e.Item.FindControl("linkbutton3") 
            If linkbutton3 Is Nothing Then 
            Else 
 
                If linkbutton3.Text.Length > 30 Then 
 
                    linkbutton3linkbutton3.ToolTip = linkbutton3.Text 
                    linkbutton3linkbutton3.Text = linkbutton3.Text.Substring(0, 40) + "..." 
                End If 
            End If 
 
        End If 
 
    End Sub 

for some reason , the code only hits every 2nd row in each of the grids !

any ideas?

Ciaran
Top achievements
Rank 1
 answered on 01 Oct 2009
1 answer
149 views
Hi,
I want to create my product for x64  machine only. 
Could you tell me if you have x64 build setup for yours products.
Sebastian
Telerik team
 answered on 01 Oct 2009
1 answer
158 views
Hello,

I know how to use image with items, but I need to keep that image displayed when user selects the item.

Is that possible ?
Shinu
Top achievements
Rank 2
 answered on 01 Oct 2009
10 answers
167 views
After downloading my (paid) copy of RadControls and installing, the Development Server automatically starts.  When I try to get anywhere, however, I can't because the server is looking for some data provider that does not exist and an MS SQL Server that does not exist.  For example,  I click on the Grid link in the left navigation panel which displays the RadGrid-specific information and API.  When I click on "Selecting" -> "Client-side Row Selection" the server throws:

 

System.ArgumentException: Unable to find the requested .Net
Framework Data Provider.  It may not be installed.

Similarly, if I try to open the "Outlook Grid" info I get:

System.Data.SqlClient.SqlException: A network-related or   
instance-specific error occurred while establishing a connection to SQL Server.   
The server was not found or was not accessible. Verify that the instance name is   
correct and that SQL Server is configured to allow remote connections.   
(provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance   
Specified)

This isn't what I paid $800.00 for!  The website and the Development Server page clearly states this is supposed to be .NET 2.0 compatiable:

Compatible with ASP.NET 2.0, 3.5

RadControls Q2 2009 released 07/01/2009
Server: IIS 7
OS: Vista
Browser: IE 7
Framework: ASP.NET 2.0 (upgrade to 3.5 not permitted)
Database: Oracle 10g
IDE: Visual Studio .NET 2005
Language: Visual Basic .NET 2005

Mark
Alaa Majzoub
Top achievements
Rank 2
 answered on 01 Oct 2009
1 answer
159 views
i have a rad scheduler showing items in month view. i have items greater than MonthVisibleAppointmentsPerDay property, so it is shownig "Show More" link. when clicked on show more link, it is navigating to day view by default. but i want is, i want to display all items of that day like a tooltip, when i hover the mouse on that day. will it be possible?
if yes tell the complete procedure. 
Shinu
Top achievements
Rank 2
 answered on 01 Oct 2009
1 answer
135 views
I have ASP.NET 3.5 installed. I have extended the web.config for AJAX 3.5. Is there a way I can install just the RadEditor? We would like to install this first and then roll the controls out once our users are comfortable with the editor. Is there a way to disable to page content area editor being a radcontrol or radeditor? We want to just use the web part.

Thanks!
Adam P.
Stanimir
Telerik team
 answered on 01 Oct 2009
1 answer
196 views
Hello Everybody,

I am facing some strange issues with radgrid with below settings.

Issues:
#1. FrozenColumn does not work with IE 6
#2. In firefox + IE8 Horizontal Scroll bar moves with a jerk 
#3. Horizontal scroll bar is not smooth.

I have created a datatable at runtime to bind RadGrid.

Any help regarding this will be deeply appreciated.

Radgrid Settings:
-- RadcodeBlock Starts
function GridCreated(sender, args)
{
var scrollArea = sender.GridDataDiv;
        var dataHeight = sender.get_masterTableView().get_element().clientHeight;
        scrollArea.style.height = dataHeight + 17 + "px";
}  
--RadcodeBlock Ends


<telerik:RadGrid ID="rdgrdMarkBookView" runat="server" OnNeedDataSource="rdgrdMarkBookView_NeedSource" CssClass="flat" PagerStyle-AlwaysVisible="true" 
AutoGenerateColumns="true" AllowPaging="true" ExportSettings-IgnorePaging="true"
   AllowSorting="true" GridLines="None" Font-Size="9px" ItemStyle-Font-Size="9px" Width="970px" PageSize="50"
   ShowGroupPanel="false">
   <PagerStyle Mode="NextPrevAndNumeric"></PagerStyle>
   <MasterTableView AllowMultiColumnSorting="True" EnableHeaderContextMenu="true" 
AllowPaging="true" ItemStyle-Font-Size="9px" AlternatingItemStyle-Font-Size="9px"
   TableLayout="Auto"  >
   </MasterTableView>
   <HeaderStyle Width="100px" />
   <ClientSettings AllowDragToGroup="True" AllowRowsDragDrop="true" AllowColumnsReorder="true"
ReorderColumnsOnClient="true" >
         <Selecting AllowRowSelect="True"></Selecting>
                <Scrolling AllowScroll="true" UseStaticHeaders="True" SaveScrollPosition="true" FrozenColumnsCount="1"   ></Scrolling>
                <ClientEvents OnGridCreated="GridCreated" />
                <ClientMessages DragToGroupOrReorder="Drag to group" />
   </ClientSettings>
   <ExportSettings IgnorePaging="True" OpenInNewWindow="True" ExportOnlyData="True">
        <Excel Format="ExcelML" />
   </ExportSettings>
 </telerik:RadGrid>

Thanks

Himanshu
Dimo
Telerik team
 answered on 01 Oct 2009
3 answers
262 views
Here is the code that I am using.

var cal = $find("<%= calDueDate.ClientID %>"); 
if (getElement("txtDueDate").value != ""){ 
var d = Date.parse(getElement("txtDueDate").value); 
cal.set_selectedDate(d); 
 

I am getting the following error in Firefox: Error: _43.getFullYear is not a function

I have tried using the value without a date parse.  Either way, gives me the same error.
Nicolaï
Top achievements
Rank 2
 answered on 01 Oct 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
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
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?