Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
95 views
Hi,
 I had customized datepicker and when I move mouse over the column header after page is loaded for the first time the dates get highlighted even though I have not enabled the properties related to column header How can this issue be solved?

<telerik:RadDatePicker AutoPostBack="false" runat="server" ID="datepicker1" Skin="Web20new"
                    EnableEmbeddedSkins="false" MinDate="1900-01-01" Width="132px">
                    <DateInput runat="server" InvalidStyleDuration="100" DateFormat = "MM/dd/yyyy" LabelCssClass="radLabelCss_Web20new" Skin="Web20new"
                        EnableEmbeddedSkins="False" ShortYearCenturyEnd="2039">
                        <InvalidStyle ForeColor="Red" />
                            
                        </DateInput>
                    <DatePopupButton CssClass="radPopupImage_Web20new" ImageUrl="Skins/Web20/Calendar/datePickerPopup.gif"
                        HoverImageUrl="Skins/Web20/Calendar/datePickerPopupHover.gif" />
                    <Calendar runat="server" TitleFormat="MMM yyyy" Skin="Web20new" NavigationPrevImage="Skins/Web20/Calendar/arrowLeft.gif"
                        NavigationNextImage="Skins/Web20/Calendar/arrowRight.gif" FastNavigationNextImage="Skins/Web20/Calendar/fastNavRight.gif"
                        FastNavigationPrevImage="Skins/Web20/Calendar/fastNavLeft.gif" ShowRowHeaders="False" EnableEmbeddedSkins="False" 
                         NavigationNextToolTip="Next Month" NavigationPrevToolTip="Previous Month"
                          FastNavigationNextToolTip="Three Months forward" FastNavigationPrevToolTip="Three Months Back">
                        
</Calendar>
                </telerik:RadDatePicker>  
Dimo
Telerik team
 answered on 13 May 2009
1 answer
133 views
I need to resize the grid when the browser is resized. There are a number of examples posted in this forum on how to do this. However, most of the examples show how it is done if the grid is the only thing on the page. I am using a RadMultiPage and the grid
appears on the second pageview which is accessible from the second tab on a tabstrip. The grid also uses static headers and paging. When I apply the solutions listed in this forum, the resizing will not work correctly. The paging status area does not initially show. If I resize the browser, it will show. I tried using the repaint() method but that did not help. This problem only shows up when Ajax is enabled.

Thank you
Johann
Polaris431
Top achievements
Rank 1
 answered on 13 May 2009
4 answers
189 views
Hi ,
I have a grid and the thing i need is i need to make one row unselectable.. If the row index is two i need to disable delete and update option...this i did.. but i have enable multi row selection and edit and delete button is there in command item.When i click any row ,then its getting selected and i can delete and edit from command item.. I need to make that row as unselectable.. please give a solution
vin
Top achievements
Rank 1
 answered on 13 May 2009
1 answer
86 views

I am using a DateTimePicker to allow users to schedule jobs in the database. I want to constrain the time selection to be between 8:00 PM and 6:00 AM. Is there a way to make the Timeview only show times between 12:00 AM - 6:00 AM and 8:00 PM - 11:00 PM (assuming a 1 hour interval)? I want the available times to be (00:00, 01:00, 02:00, 03:00, 04:00, 05:00, 06:00, 20:00, 21:00, 22:00, 23:00).

Dimo
Telerik team
 answered on 13 May 2009
1 answer
59 views
Hi First time accessing the Forum so please allow me some slowness, I am trying to verify that the input on a tabbed web page populates a display only field on a second tabbed page accurately. I have investigated the verify function but am unable to see a methodology for recording this. Can anybody help?
Konstantin Petkov
Telerik team
 answered on 13 May 2009
3 answers
192 views
Hi, I try to hide a column in a radgrid with this code:

Dim

 

dtDatos As DataTable = New Utilidades.Abismo(Session("Conexion")).CargarDatosExplotadores()

 

grdExplotadores.DataSource = dtDatos

grdExplotadores.DataBind()

grdExplotadores.Columns(1).Visible =

False

The same code works fine with a asp:gridview, how can I do to hide a column with a radgrid?

Thanks.

 

jose antonio
Top achievements
Rank 1
 answered on 13 May 2009
7 answers
215 views
I have a rotator control on my page set to Slideshow.  I have tried opening it in several different browsers (IE, Firefox for Windows, Safari for Windows, Firefox for Mac, Safari for Mac).  The first time that I go to my site with a new browser the rotator does not start.  If I refresh the page then the rotator starts and it seems to be fine after that.  I can close the browser and go back to the site and it is still working.

Is there something that I can code to ensure that the rotator always starts when the page is first loaded?  I'm concerned that users going to my site for the first time may not see the rotating images.

Thanks.
Dan
Fiko
Telerik team
 answered on 13 May 2009
0 answers
126 views
Hi,

Is there a way to get the argument for CotextMenuShowing on server side? i need to get the value on the node when on ContextMenuShowing. Scenario is that i need to disable a contextMenu base from the role which is retrieve from the database. And the role varies form node to node. It's fairly easy to send values from server side to client side.. but now.. i need to get the value of node from client side to serverside to check its role.

can you help me with this?


Thank You!

Rex
jorex
Top achievements
Rank 1
 asked on 13 May 2009
1 answer
104 views
hello 

        In my application i use data grid using grouping option. i want export that grouped data in pdf file. How to do this please reply 

    i am trying but it gives runtime Expception "RadGrid must be databound before exporting." how to solve this i hv binded the data tell me exact method for binding the data ..



Thanks
Shinu
Top achievements
Rank 2
 answered on 13 May 2009
2 answers
131 views
Hi,
I am connecting the sqldatasource dynamically to the RadGrid and i have the following selected command;

SELECT [Assignment], [Task], [M9_Sep], [M10_Oct], [M11_Nov], [M12_Dec], [M1_Jan], [M2_Feb], [M3_Mar], [M4_Apr], [M5_May], [sno], [Resource_Name], [Resource_Year], [Resource_Month], [Resource_week], [Division_ID], [Section_ID] FROM [Resource_Data] WHERE (([Resource_Name] = @Resource_Name) AND ([Division_ID] = @Division_ID) AND ([Section_ID] = @Section_ID) AND ([Resource_Year] = @Resource_Year) AND ([Resource_Month] = @Resource_Month) AND ([Resource_week] = @Resource_week)) 
Protected Sub Button3_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button3.Click  
        RadGrid1.DataSourceID = "Sqldatasource3" 
End Sub 
I specify commanditemdisplay="Top" and set the properties       allowautomaticinsert,delete and update.

Sometimes i am getting no rows because of above condition fails. Its ok for me.

The problem i am getting that i cannot able to see "Add a new Record". Only a single line appearing for the grid.

I don't what exactly went wrong.

Thanks.

 
Syed
Top achievements
Rank 1
 answered on 13 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?