Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
254 views
Hope this is an easy one :)

Created a custom skin (using the default one and making a couple of minor CSS changes) following the directions on http://www.telerik.com/help/aspnet-ajax/radnotification-creating-custom-skin.html.  Everything worked as far as the CSS goes; however the ContentIcon and TitleIcon always appear as broken images when I set EnableEmbeddedSkins="false" no matter what I do.  How can I incorporate the icons (ok, delete, etc.) into my custom skin so that they show up?

I realize that I can use my own icons, but in this case I would like to use the Telerik default, if possible.

Thanks in advance!
Marin Bratanov
Telerik team
 answered on 26 Aug 2011
3 answers
214 views
I upgraded to the latest telerik version 3_1103 and now my tool tips are staying at a static size. In addition the location of the tool tip is moving to the far left of the browser window. I generate the tool tip contents from the code behind and they can very in size. Right now they only stay at the minimum height and width I had set in the html. The tool tips were working perfectly with version 2_929. Please advise.
Marin Bratanov
Telerik team
 answered on 26 Aug 2011
1 answer
15 views
Hi,

Spell/Custom Text Source not worked in IE but worked  in FF and Chrome, this editor does not suggest spelling option in IE.

This is the major issues in your controls please check and provide proper solution for it.


With Regards,
Balwant
Rumen
Telerik team
 answered on 26 Aug 2011
6 answers
1.3K+ views
I want to client validate RadGrid rowcount > 0, how do it?

I am using popup edit mode for ItemTemplate

Tks.
Tsvetina
Telerik team
 answered on 26 Aug 2011
1 answer
118 views

In the RadEditor, if there are any font attributes such as font size and fontname applied to the text then those settings are not preserved while exporting the text to rtf. Do let me know If anyone has encountered the problem and workaround for the same.

 

Thanks in advance.

Rumen
Telerik team
 answered on 26 Aug 2011
1 answer
95 views
HI,

Can i use telerik tool tip for a textbox. When a user clicks on textbox,  it should open a tooltip with that textbox it in  and user should be able to edit it and on closing it should  append changed text in to the textbox.

If so, Can you please provide a example.

Thanks,
Nimmy
Shinu
Top achievements
Rank 2
 answered on 26 Aug 2011
2 answers
126 views
When I type a long paragraph until the vertical scroll bar appears and then press enter key the scroll bar jumps up and I need to scroll it down to continue typing. Please let me know if there is something to fix this issue.
Rumen
Telerik team
 answered on 26 Aug 2011
2 answers
57 views
Hi Guys,
I'm dynamicly setting the DeletePaths, UploadPaths and ViewPaths based on some users credentials with the following code:

 

 

Dim viewImages As String() = New String() {"~/Images/" & ddMenuName.SelectedValue}

 

 

 

Dim uploadImages As String() = New String() {"~/Images/" & ddMenuName.SelectedValue}

 

 

 

Dim deleteImages As String() = New String() {"~/Images/" & ddMenuName.SelectedValue}

 

 

 

If Not IsPostBack Then

 

    RadEditor1.ImageManager.ViewPaths = viewImages

    RadEditor1.ImageManager.UploadPaths = uploadImages

    RadEditor1.ImageManager.DeletePaths = deleteImages

 

 

End If

This works very good, however the upload button is disabled. What am I doing wrong here?

 

Rumen
Telerik team
 answered on 26 Aug 2011
1 answer
62 views
What i need to do is hide a radgrid column and unhide one based on a date.  I got it to work so far to hide the first column but it will not unhide the second column.  Confused at this point??
<telerik:RadGrid ID="myGridPositions" runat="server" BorderWidth="1px" CellPadding="6" GridLines="None" BorderColor="#404040" Skin="Web20">
                                                  <MasterTableView Name="myRGDDMain" AutoGenerateColumns="false" DataKeyNames="intPositionId" Font-Names="Veranda,arial,sans-serif" HeaderStyle-HorizontalAlign="Center" 
                                                  BorderWidth="1px" Width="100%" ItemStyle-HorizontalAlign="Center">
                                                   <HeaderStyle Font-Bold="true" />
                                                   <AlternatingItemStyle BackColor="#B0C4DE" />
                                                           <Columns>
                                                               <telerik:GridBoundColumn DataField="strPosnTitle" HeaderText="TITLE" ItemStyle-HorizontalAlign="left" />
                                                               <telerik:GridBoundColumn DataField="strpara" HeaderText="PARA" ItemStyle-HorizontalAlign="Center" />
                                                               <telerik:GridBoundColumn DataField="strLine" HeaderText="LINE"  ItemStyle-HorizontalAlign="Center" />
                                                               <telerik:GridBoundColumn DataField="intPositionNum" HeaderText="POS"  ItemStyle-HorizontalAlign="Center" />
                                                               <telerik:GridBoundColumn DataField="strGrade" HeaderText="GR"  ItemStyle-HorizontalAlign="Center" />
                                                               <telerik:GridBoundColumn DataField="strMos" HeaderText="MOS"  ItemStyle-HorizontalAlign="Center" />
                                                               <telerik:GridBoundColumn DataField="strFullName" HeaderText="Filled By" ItemStyle-HorizontalAlign="Left" />
                                                               <telerik:GridtemplateColumn HeaderText="LT_MOB" ItemStyle-HorizontalAlign="Center" UniqueName="Latemob">
                                                                   <ItemTemplate>
                                                                       <asp:LinkButton ID="lnkLateMob" runat="server" CommandArgument='<%# bind("intPositionId") %>' CommandName="LateMob">LT_MOB</asp:LinkButton>
                                                                   </ItemTemplate>
                                                               </telerik:GridtemplateColumn>
                                                               <telerik:GridTemplateColumn HeaderText="Remove" ItemStyle-HorizontalAlign="Center">
                                                                   <ItemTemplate>
                                                                       <asp:LinkButton ID="lnkDelete" runat="server" CommandArgument='<%# bind("intPositionId") %>' CommandName="Remove">Remove</asp:LinkButton>
                                                                   </ItemTemplate>
                                                               </telerik:GridTemplateColumn>
                                                                <telerik:GridTemplateColumn HeaderText="Remove" ItemStyle-HorizontalAlign="Center" Visible="false" UniqueName="Refrad">
                                                                   <ItemTemplate>
                                                                       <asp:LinkButton ID="lnkRefrad" runat="server" CommandArgument='<%# bind("intPositionId") %>' CommandName="Refrad">Refrad</asp:LinkButton>
                                                                   </ItemTemplate>
                                                               </telerik:GridTemplateColumn>
                                                           </Columns>
                                                   </MasterTableView>
                                               </telerik:RadGrid>

Protected Sub myGridPositions_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles myGridPositions.ItemDataBound
       Dim Today As DateTime = Date.Now
       Dim deploy As DateTime
       sql = "Select dtDeploy from tblMobUnits where intUnitMobId = " & ddlUic.SelectedValue
       myDataTable = New DataTable
       myDataTable = getData(sql)
       If IsDBNull(myDataTable.Rows(0)(0)) Then
           deploy = Date.Now.AddDays(10)
       Else
           deploy = myDataTable.Rows(0)(0)
       End If
       If Today > deploy Then
           If TypeOf e.Item Is GridDataItem Then
               myGridPositions.MasterTableView.GetColumn("Latemob").Display = False
               myGridPositions.MasterTableView.GetColumn("Refrad").Display = True
           End If
       End If
       If TypeOf e.Item Is GridDataItem Then
           Dim Item As GridDataItem = DirectCast(e.Item, GridDataItem)
           Dim cell As TableCell = Item("strFullName")
           If cell.Text = " " Then
               Dim Late As LinkButton = DirectCast(Item.FindControl("lnkLateMob"), LinkButton)
               Late.Visible = False
               Dim Remove As LinkButton = DirectCast(Item.FindControl("lnkDelete"), LinkButton)
               Remove.Visible = False
           End If
       End If
   End Sub
Tsvetina
Telerik team
 answered on 26 Aug 2011
3 answers
67 views
I am using Telerik.Web.UI_2011_2_712. When opening any of the image/document etc managers, the dialog box is 510 px high with a 20px strip of images 30 px down from the top, 16 px wide but repeating horizontally the width of the dialog box. When I go to compatibility mode, the dialog box displays correctly and is 490px high.
Rumen
Telerik team
 answered on 26 Aug 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?