Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
93 views
Hi,

I'd like to set the font style of a selected row at client side. How can I do that?

Thnx
adi
Top achievements
Rank 1
 answered on 25 Jun 2009
1 answer
122 views
I am having a problem with the editor looking like crap in internet explorer 8 (including compatibility view)...please look at the following link. It is stretched more than 100% of the page. No matter what container or skin I use. The only thing I can see is there is an element style set to 100% on a bunch of the nested tables in the editor like this

<table id="dnn_ctr378_EditHTML_teContent_teContentWrapper" cellspacing="0" cellpadding="0" style="table-layout: auto; width: 100%; height: 560px;">

You can see a screenshot here

Has anyone else seen this? Is there a workaround? I am trying the editor out and this would be a deal breaker.

Thanks in Advance





Tervel
Telerik team
 answered on 25 Jun 2009
1 answer
155 views
Hello,

I'd like to drag an item from the RadFileExplorer.Grid into other RadGrid. The Grid_RowDrop event of RadFileExplorer should be fired and update the target RadGrid.
I have added a server-side event to the RadFileExplorer.Grid and also client side events:
          
 
            RadFileExplorer1.Grid.RowDrop += new GridDragDropEventHandler(Grid_RowDrop); 
 
            RadFileExplorer1.Grid.ClientSettings.ClientEvents.OnRowDragStarted = "onRowDragStarted"
            RadFileExplorer1.Grid.ClientSettings.ClientEvents.OnRowDropping = "onRowDropping"
            RadFileExplorer1.Grid.ClientSettings.ClientEvents.OnRowDropped = "onRowDropped"

But it had no effect. I've tried the  same with RadGrid control and it worked:
RadGrid1.RowDrop += new GridDragDropEventHandler(Grid_RowDrop);

So far I have no idea.

Kind regards,
Stefan
Lini
Telerik team
 answered on 25 Jun 2009
1 answer
263 views
Hi,
I printed the rad editor document..but at the bootom of the page,the url of the page with querystring is displaying as a link button.
I want to remove this footer..I have checked the demo..It also prints the page details on the footer of the document

Plz help me...
Thanks
Rumen
Telerik team
 answered on 25 Jun 2009
1 answer
135 views
Coming from the Windows Forms world, there is one thing I find really difficult: The impedance mismatch between css and Telerik layout controls. My lack of css expertise makes it almost impossible to get started... It would be nice to have a range of layout samples without any content goo. Just to get you started. The controls are otherwise simple to use.
Sebastian
Telerik team
 answered on 25 Jun 2009
2 answers
53 views
I came across a strange problem:

Use updatepanel for ms Ajax approach in RadGrid nested in a RadGrid, in RadGrid nested in a template column, RadGrid binding outer layer, the dynamic binding nested in RadGrid. Procedures Dynamic user control loading out this template, the user dynamic form loading.

But problems arose when I was in the outer loading RadGrid in the following four records, the page after the back-fat, all normal. But the point toolbar button, the entire surface of the Telerik controls page, including tools and the style of all the loss of RadGrid.
Styles lost the appearance of RadGrid and can not be selected.
Very difficult to understand, carry the following four records, all normal. Do not know why?
I do not think the issue of the process itself! Will not be the issue of control or is the issue of the updatePanel? Configuration problems or Ajax?
Please help me!
Thanks!
2003
Top achievements
Rank 1
 answered on 25 Jun 2009
1 answer
58 views
I use RadToolTimManager in the Master Page. I have set AutoToolTipify to true, with OnMouseOver, and this is fine for 90% of the intended usage.

However, for fill-in forms, I would like the behavior to switch to OnFocus for the data entry fields. In this way, as the user clicks or tabs through, they get instructions for the field.

Somewhere in the demo material, I found this comment: "For example, you can tooltiptify only specific areas on your page or automatically tooltipify controls on your page."

How do I set a area, or specific controls, to override the Master Page settings (mouse) to the data entry fields (focus)?
Svetlina Anati
Telerik team
 answered on 25 Jun 2009
1 answer
134 views
I have a raddatepicker and I am trying to make the border - "red" if it is left empty. It only works when user tries to pick the date the second time and leave it empty not the first one i.e. we have to have the focus twice and only then it works. I got the latest dlls but still I cannot solve the problem. Can someone please tell me what am I doing wrong ?

<telerik:RadDatePicker  ID="radBillPeriodStartDate1" Skin="Office2007" Style="vertical-align: middle;" 
                            runat="server"   
                            DbSelectedDate='<%# Bind("BEGIN_BILLING_PERIOD""{0:d}") %>'  
                            MinDate='<%# DateTime.Now.AddMonths(Convert.ToInt32(ConfigurationManager.AppSettings["BillingMin"].ToString()))%>'  
                            MaxDate='<%# DateTime.Now.AddMonths(Convert.ToInt32(ConfigurationManager.AppSettings["BillingMax"].ToString()))%>'  
                                
                            >  
                            <Calendar ShowRowHeaders="false">  
                                <OutOfRangeDayStyle Font-Strikeout="true" ForeColor="red" />  
                            </Calendar>  
                            <DateInput ID="DateInput1" runat="server" InvalidStyle-BorderColor="red" InvalidStyle-ForeColor="red" EmptyMessageStyle-BorderColor="red" EmptyMessage="  ">  
                            <EmptyMessageStyle BorderColor="red" />   
                                <ClientEvents OnKeyPress="disableEnterKey"    />  
                            </DateInput>  
                        </telerik:RadDatePicker>  
                      
Dimo
Telerik team
 answered on 25 Jun 2009
2 answers
100 views
Any chance we could see the following example updated for 2009 Q1?  I'm interested in how to bind it using page methods and using jQuery (since it is already in the project).

WebService based load on demand multi-column combobox


Thanks,
Colin


Simon
Telerik team
 answered on 25 Jun 2009
1 answer
230 views
I am trying to implement go to page number functionality in a detail table and can't seem to get it to work right.  I'd like to implement it using client side code and tried the following based loosely on a demo.

    function txtPendingReleaseInfo_ValueChanged(sender, args) 
    { 
        var grid =$find("<%= RGPendingCases.ClientID %>"); 
        var detailTables = grid.get_detailTables();

        var release = detailTables[1]; 
        release.page(sender.get_value()); 
    } 

There are 3 detail tables, the one I'm trying to access in this case is the second one.

I also tried something server side that didn't work as well.

    Protected Sub txtPendingReleaseInfo_OnTextChanged(ByVal sender As ObjectByVal e As EventArgs) 
        Dim txtPendingReleaseInfo = DirectCast(sender, Telerik.Web.UI.RadNumericTextBox) 
        Dim PageIndex As Integer 
        Integer.TryParse(txtPendingReleaseInfo.Text, PageIndex) 
 
        Dim ChildGrid = RGPendingCases.MasterTableView.DetailTables(1)  
        If PageIndex < 1 Then 
            PageIndex = 1 
        End If 
        ChildGrid.CurrentPageIndex = PageIndex - 1 
        ChildGrid.Rebind() 
    End Sub 

In this case, ChildGrid had a null ClientID, but all the other properties represented the correct grid.  Calling Rebind on it never fires the bind code.  The only way I seemed to be able to get this to work was to do

DirectCast(RGPendingCases.Controls(1).Controls(0).Controls(4).Controls(1).FindControl(ControlName), Telerik.Web.UI.GridTableView) 

and I really detest that way.

Any suggestions or examples I can look at?  I couldn't find any demos that did this.
Sebastian
Telerik team
 answered on 25 Jun 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?