Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
79 views

Hi,

I used following code and other code also but not working.

 

  <LabelsAppearance >
                    <TextStyle Color="Red" FontFamily="Arial"  Padding="10" Bold="true"
                        Italic="true" Margin="10" />
                </LabelsAppearance>

Stamo Gochev
Telerik team
 answered on 10 Feb 2016
3 answers
228 views
I am facing image cropping issue in telerik image editor. When red crop tool's area is increased accidentally or purposefully. Its boundary  goes outside view. When we try to resize it then it gives -ve values and image cropping is not done properly.

Is this a known issue? Do you have any solution available for this?
If not do you have any workaround available for this?

Let me know as early as possible.
Please find attachment for more info.

Thanks
Ketan
Vessy
Telerik team
 answered on 09 Feb 2016
1 answer
178 views

Hey..

 We are using you Radeditor in our application with localization. But we see that there are 2 places where localizations are not handled:-

1. Click on hyperlink manager and then click on button next to URL then click on image selector and notice pagination text at bottom.

2. Click on hyperlink manager and then click on button next to URL click on documents. If there is no content in the folder it shows ""No Records to Display" in all languages. 

We need both these things localized. Please help me how to proceed.

 

Thanks in advance,

Vessy
Telerik team
 answered on 09 Feb 2016
3 answers
161 views

right i've read so many threads on how to implement a custom skin for a telerik menu onto my webpage this is what I currently have coded.

 In my web config I have:

<appSettings>
<add key="Telerik.Skin" value="Glow2"/>
<add key="Telerik.EnableEmbeddedSkins" value="false"/>
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false"/>
<add key="Telerik.ScriptManager.TelerikCdn" value="Disabled" />
<add key="Telerik.StyleSheetManager.TelerikCdn" value="Disabled" /></appSettings>

 

in my site master I have

<link href="Skins/Glow2/Menu.Glow2.css" rel="stylesheet" type="text/css" />

 

and for my menu code I use:

<li>
<asp:LoginView ID="SysAdminLV" runat="server">
<RoleGroups>
<asp:RoleGroup Roles="Masters">
<ContentTemplate>
<telerik:RadMenu ID="SysAMenu" runat="server" Skin="Glow2">
<Items>
<telerik:RadMenuItem runat="server" Text="Sys Admin" NavigateUrl="~/Default.aspx">
<Items>
<telerik:RadMenuItem runat="server" Text="Create User" NavigateUrl="~/Staff/Masters/New_User.aspx"></telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" Text="Manage Users" NavigateUrl="~/Staff/Masters/Manage_Users.aspx"></telerik:RadMenuItem>
</Items>
</telerik:RadMenuItem>
</Items>
</telerik:RadMenu>
</ContentTemplate>
</asp:RoleGroup>
</RoleGroups>
</asp:LoginView>
</li>

 

 

Now my custom skin is called Glow2 because I made very little changes to the "Glow" skin, im not getting an error or anything the page loads fine its just the links that I have do not pull through the syling from the Glow2 Skin. attached is what the page looks like when loaded.my "home" and "Sysadmin" links are telerik the rest are coded through CSS at the moment.

Ivan Danchev
Telerik team
 answered on 09 Feb 2016
5 answers
140 views

Hi Ivan,

'm using an icon font and have allocated an icon to a node.  When the node is in the More menu any child nodes also display the CSS. If the same main node is accessed when NOT in the more menu the icon doesn't show on the child nodes.  

I'm trying to use some CSS to get the icon to only display on the parent node but am having no luck yet.  Any pointers?

Regards

Jon

Ivan Danchev
Telerik team
 answered on 09 Feb 2016
1 answer
115 views
Hi, 

I want to create a RadGrid that is statically defined in the ASPX with some columns defined.  But also want to add (generically or programmatically) additional columns to the RadGrid (to the right of the already defined columns) dynamically based on the result set returned from a stored procedure. Finally, I want all columns to have full filter/sorting capabilities.

Is there a way I can achieve this?

NOTE: In the past, I have already created a programmatically defined RadGrid (in a older version of the RadGrid) by defining the complete grid structure, filters, events etc. in the Page_Init event (which was a lot of work).  I would like to know if there are easier ways to achieve this now in the latest versions of the RadGrid? 

Kind Regards

Dan
Eyup
Telerik team
 answered on 09 Feb 2016
4 answers
166 views

Hi All,

In case anyone has issues with the tooltips on the Material skin mod them with the following css.  Found in the dataviz.css file in the installation folder. Hopefully a more compliant style will be added to the material skin at some point in the future.  

.k-chart-tooltip {
    border-radius: 0px !important;
    background-image:none !important;
}
 

Cheers

Jon

Jon
Top achievements
Rank 1
 answered on 09 Feb 2016
6 answers
212 views

Hi,

On the RadGrid there is a css style that you can use to give a deeper shade to the sorted column.  Is there an eqivalent for the TreeList?  Looking at the CSS I couldn't find one...

Regards

Jon

Jon
Top achievements
Rank 1
 answered on 09 Feb 2016
1 answer
73 views

The following is my grid which uses AllowAutomaticUpdates and updates the row as expected when the Update button is clicked. The problem is when I copy the code to the server, when I click the Update button, nothing happens. Clicking Edit brings up the Update and Cancel buttons as expected. Clicking Cancel takes the row out of Edit mode as expected. The environments appear to be the same. The code is the same. 

 What could be causing Update button not to fire on one computer but works fine on another? What do I look for?

    <telerik:RadGrid ID="rgProducts" runat="server" DataSourceID="sqlProducts" GroupPanelPosition="Top" Skin="Office2010Black" AutoGenerateColumns="False" Width="600px"
        AllowSorting="True" Height="200px" AutoGenerateEditColumn="True" MasterTableView-EditMode="InPlace" AllowAutomaticUpdates="True">
<GroupingSettings CollapseAllTooltip="Collapse all groups"></GroupingSettings>
        <ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="True" EnablePostBackOnRowClick="true">
            <Selecting AllowRowSelect="True" />
            <Scrolling AllowScroll="True" UseStaticHeaders="True" />
        </ClientSettings>
        <MasterTableView DataSourceID="sqlProducts" DataKeyNames="product_id" >
            <Columns>
                <telerik:GridBoundColumn DataField="product_id" Visible="false"  HeaderText="Product_id" UniqueName="product_id">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="product_name"  HeaderStyle-Width="100px" FilterControlAltText="Filter product_name column" HeaderText="Product" SortExpression="product_name" UniqueName="product_name">
<HeaderStyle Width="100px"></HeaderStyle>
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="sams_excel_column"  HeaderStyle-Width="30px" DataType="System.Int32" FilterControlAltText="Filter sams_excel_column column" HeaderText="Sams Excel Column" SortExpression="sams_excel_column" UniqueName="sams_excel_column">
<HeaderStyle Width="30px"></HeaderStyle>
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="rd_excel_column"  HeaderStyle-Width="30px" DataType="System.Int32" FilterControlAltText="Filter rd_excel_column column" HeaderText="RD Excel Column" SortExpression="rd_excel_column" UniqueName="rd_excel_column">
<HeaderStyle Width="30px"></HeaderStyle>
                </telerik:GridBoundColumn>
            </Columns>
        </MasterTableView>
    </telerik:RadGrid>    

Viktor Tachev
Telerik team
 answered on 09 Feb 2016
1 answer
87 views

Quick question 

 

how can i find a dropDowncolumn via javascript ?

 

I've tried the following

 

 var row = masterTableView.get_editItems()[0];
 var dropDown = masterTableView.get_editItems()[0].findControl('nameofMyDropDownColumn');

 

but when debugging dropDown is always null 

 

Notes:

 grid is in edit mode

 

 

Is there a different method i should be using ?

 

 

 

 

 

 

Eyup
Telerik team
 answered on 09 Feb 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?