Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
240 views
I have two date picker control in the command template.

How to find those two controls from client side. I haven't found any demo for that.

sample code
 <CommandItemTemplate>
      From <telerik:RadDatePicker ID="RadDatePickerFrom" runat="server" ZIndex="30001" ShowPopupOnFocus="true" DatePopupButton-Visible="false" Width="80px" DateInput-DateFormat="M/dd/yyyy" ClientEvents-OnDateSelected="DateRangechanged"/>

     To  <telerik:RadDatePicker ID="RadDatePickerTo" runat="server" ZIndex="30001" ShowPopupOnFocus="true" DatePopupButton-Visible="false" Width="80px" DateInput-DateFormat="M/dd/yyyy" ClientEvents-OnDateSelected="DateRangechanged" />

</CommandItemTemplate>


On the clientside, i wish to use two variables
   datepickerfrom =
   datepickerto =

Thanks for help
Shinu
Top achievements
Rank 2
 answered on 11 Jul 2012
4 answers
303 views
Hi,

Is there a way to get a loading panel to display the seconds that has elapsed while it is being displayed.   For example, if I have a radgrid that displays a loading panel when a row is saved.  The save process may take 10 - 15 seconds and I would like to display the seconds as they go by in the loading panel. 

I know I can display a label on a page and attach a timer to it but I want to display the time elapsed in the loading panel.

Is there a way to do this?

Thank you for your help.
Tracy
Top achievements
Rank 1
 answered on 11 Jul 2012
2 answers
144 views
Hell Telerik,

I have recently updated to ASP.NET AJAX Q2 2012 update (previously on Q3 2011)
We have used the Scheduler and specified Advanced form attributes on our application.

After the update (mentioned above) I found that when a New Appointment is created, (double clicking on a timeslot on the calendar) it should show "PM" instead of the "AM" time that was chosen.
(see attached screenshot)

I had found that the update had appended TimeZoneID, TimeZoneOffset into the <telerik: RadScheduler> tag and also inserted EnableTimeZoneEditing into the <AdvancedForm> tag.

To work around this problem I found that once the above 3 tags were removed the scheduler would pick up the time correctly
i.e. 9.00 AM intead of 9.00 PM

The values for the above attributes were:
  • TimeZoneID = "New Zealand Standard Time"
  • TimeZoneOffset = "12:00:00"
  • EnableTimeZoneEditing = "True"

Am I missing something in configuration? (or possibly a bug?)

Thanks.







MfE_Developer
Top achievements
Rank 1
 answered on 10 Jul 2012
8 answers
227 views
We have a web app using the rad ajax controls that is deployed to the Azure platform.

We are experiencing an intermittent but frequent problem where the rad controls wont work after new deployments.
No errors are displayed but the controls dont render any skin elements eg a radwindow will show the internal content but the titlebars, frames etc and not rendered.

If I repeatedly deploy the same package to azure it will eventually work. Given each deployment can take 40 minutes this is extremely frustrating.

Has anyone come across this sort of problem?
ruben
Top achievements
Rank 1
 answered on 10 Jul 2012
3 answers
138 views
Hello,

We are using RadControls for ASP.Net AJAX.

We have a RadGrid control set to "Auto-generate columns at runtime". The control also has filtering enabled. We have a vertical scrolling issue. The filter controls are anchored and do not scroll with the vertical scroll bar. This only occurs for filter controls that contain date and numeric values. The filter controls that contain string data scroll correctly with the vertical scroll bar.

The app has been deployed to IIS. We have two client machines that experience the above vertical scrolling issue. A third machine does not have any vertical scrolling issues.

All three machines are running IE9.

Any suggestions?

Thanks,
Mike


Mike
Top achievements
Rank 1
 answered on 10 Jul 2012
1 answer
94 views
Hi - I'm new to the Visual Studio 2010 telerik asp.net Ajax tools from telerik.

-Visual Studio 2010 SP1 + Ajax Toolkit
-RadControls for ASP.NET Ajax, Version:  2012.2 607 (Jun 11, 2012)

I'm trying to follow the sample Navigation tutorial.

I build the project and page from scratch, following the nav tutorial. All was working as expected until I tried to replicate the Alert call.
At one point they add a RadAjaxManager, and add a RadMenuItem to a RadMenu, and in the RadMenu1_ItemClick event handler call :

 RadAjaxManager1.Alert("The value for clicked item is: " + e.Item.Value);

The alert simply doesn't work for me. The page seems to refresh with no -popup alert.

I do understand javascript, and am used to having to register the script as the page loads.

So did I miss something in setting up the page, or some property of RadAjaxManager?
I've looked in other forum posts, but they don't seem to match my issue.

rachmann
Top achievements
Rank 1
 answered on 10 Jul 2012
1 answer
68 views
Hello
here is some of my problems in my web application:

1. why after loggin to the website it does not go to every user's associated default page?
   i have defined it in sitemap and i have used membership.

2. i have set an update query for sqldatasource and it works fine but after making columns which query parameters are
bound to them read only, the update does not work.

please help.

Jayesh Goyani
Top achievements
Rank 2
 answered on 10 Jul 2012
4 answers
418 views
I M Using a Radgrid in which i need to disable radgrid Commnds on Some DataItem ..
I m using RadgridEditCommand Column as well asRadgridbutton Column.
Even if i make them enable false..Clicking on that itemCommand gets fired.


 

Private Sub DisableRadGridCommand(ByVal dtitem As GridDataItem, ByVal colname As String)

 

 

Try

 

 

For Each ctrl In dtitem(colname).Controls

 

 

If (TypeOf ctrl Is WebControl) Then

 

 

CType(ctrl, WebControl).Enabled = False

 

 

End If

 

 

Next

 

 

Catch ex As Exception

 

 

End Try

 

 

End Sub

 

Distribuidora Electrica
Top achievements
Rank 1
 answered on 10 Jul 2012
2 answers
283 views
hello

        i am a beginner of this Rad controls and working on Chart controls for our major project in college. i have already added three references " chart , core and premitives" but when try to add chart controls in toolbox from source then this pop-up appear  


                                            There are no controls in C:\program Files\ telerik\RadControls for windows phone 7 Q2 2012\Binaries\windows phone\telerik.windows.controls.chart.dll that can be placed on the toolbox. 

"sorry it should be in Windows Phone Forum forgive me"

  please help me  . Thank you
Lalit
Top achievements
Rank 1
 answered on 10 Jul 2012
8 answers
779 views
I'm using a RadGrid with a GridNumericColumn as: 

<telerik:GridNumericColumn DataField="VALUE" HeaderText="Testing Decimal Value" DecimalDigits="6" DataType="System.Decimal" UniqueName="VALUE" NumericType="Number" />

When I enter a decimal value as 1.000015 it is accepted and I'm able to successfully process this value when accessing the hash table in my custom update command. However, when I try to enter a value with as 0.000015 or -0.000015 it turns into scientific notation (0.5E-05) when attempting to update the value and errors out. I have tried setting the AllowRounding to true or false as well as setting the KeepNotRoundedValue to true or false without any change. This problem only occurs if I use a value starting with a 0 and using more than 3 zeros in the precision, i.e. 0.00001. 

I see in the Q1 2012 BETA there is a fix that may resolve my issue? (Fixed: RadNumericTextBox applies scientific notation on focus and wrong value on blur when DecimalDigits and AllowRounding are set and value like 0.0000001 is entered)

I'm unable to update to the BETA at this time and need to know if there is a possible workaround for this precision problem? Any help would be appreciated.

Thanks,
Brandon 
Robert
Top achievements
Rank 1
 answered on 10 Jul 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?