Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
189 views
Hello,

When changing to Lightweight mode, the icons for edit and delete (Silk skin) disappear.
They become standard blank buttons. 
This is in Q3 and Q1. (And earlier 2014)
Browser: Chrome & IE

Attached you see my results (image)

Code:
<telerik:TreeListButtonColumn UniqueName="DeleteColumn" ButtonType="ImageButton" CommandName="Delete" ToolTip="Delete this row" MinWidth="30px" MaxWidth="30px" HeaderStyle-Width="30px" Resizable="False" Reorderable="False" />
 
<telerik:TreeListButtonColumn UniqueName="EditColumn" ButtonType="ImageButton" CommandName="Edit" ToolTip="Edit this row (Double Click)" MinWidth="40px" MaxWidth="40px" HeaderStyle-Width="40px" Resizable="False" Reorderable="False" />
^ Above is tested in a new project 

How do I keep the same behavior in Lightweight mode?

Kind Regards,

Erik
Venelin
Telerik team
 answered on 16 Mar 2015
1 answer
103 views
i have telerik radcombobox , i have upgraded the telerik version to 2014.3.1209.35, but then my ui of combobox is completely unbalanced.
Magdalena
Telerik team
 answered on 16 Mar 2015
3 answers
228 views
I have a radcombobox with checkboxes. It has a javascript that has to enable another textbox depending on the value of selected item.
The javascript is called when the checkbox is selected but it does not find selected items first time.
when we click second time it finds only the first one. And so on.

I have a code snippet to reproduce this issue. This used to work before I installed updates.
2015.1.225.40 installed.

I am using C# 2012
.net vesrion 4.5

In this code snippet, I am updating  the value of label. The Label shows the values of selected items '-' seperated.
So first time if I select 44 (value 4)  .... The Label shows nothing
then if I select 11(value 1)  .... The Label shows -4
then if I select 77(value 7)  .... The Label shows   -1- 4 
and so on.

I hope I have explained my scenario good enough. Please let me know if you need any more clarification.
------------- Javascript -----------
    function OnNCAAChange(sender, args) {
        var NCAA;
        var Label1;

        NCAA = $telerik.$("[id$='UINCAA']");
        Label1 = $telerik.$("[id$='Label1']");
        Label1[0].textContent = "";
        for (var i = 0; i < sender.get_items().get_count() ; i++) {
            var item = sender.get_items().getItem(i);
            var checkbox = item.get_checkBoxElement();
            if (checkbox.checked) {
                Label1[0].textContent = Label1[0].textContent + ' - ' +  item.get_value();
            }
        }
    }

--------- Controls -----------------
 <telerik:RadComboBox runat="server" ID="UINCAA" Width="60%" CheckBoxes="true" EnableCheckAllItemsCheckBox="false"
                                    OnClientItemChecking="OnNCAAChange" Style="z-index: 8100" MaxHeight="240" ItemsPerRequest="10">
                                </telerik:RadComboBox>
    <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>

--------Codebehind -------------
   protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            //List<RadComboBoxItem> rcblist;
            //rcblist = GlobalCodes.GetRCBListBySTSVer(GlobalCodes.Database.STS_Congenital, "3.22", "NCAA", false);

            UINCAA.Items.Clear();
            string t = "1";
            for (int i = 1; i < 10; i++ )
            {
                //RadComboBoxItem hc;
                RadComboBoxItem rc = new RadComboBoxItem();
                rc.Text = t + i.ToString();
                rc.Value = i.ToString();
                UINCAA.Items.Add(rc);

            }
        }

    }

   


Ivan Danchev
Telerik team
 answered on 16 Mar 2015
2 answers
116 views
Having trouble with the PDF export functionlaity. I created a page and copied the sample test from the site

http://www.telerik.com/help/aspnet-ajax/clientexportmanager-getting-started.html

When I click the button I get:

Error: Object doesn't support property or method 'exportPdf'

I can export an image, but not a pdf.

What am I missing? Thank.

Using...  2015.1.204.40
Mbott
Top achievements
Rank 1
 answered on 16 Mar 2015
1 answer
47 views
Hi,

I am using Radeditor in .net.
 I want to add comment to trackchanges content but add comment button not responding

can i add comment to trackchanges content?

Thanks & Regards,
M.Raju
Ianko
Telerik team
 answered on 16 Mar 2015
5 answers
149 views
Hi,
CommonTooltipsAppearance.Shared = true not work (java script error), same code with previous version work fine.

Thanks
Gianmarco
Danail Vasilev
Telerik team
 answered on 16 Mar 2015
3 answers
97 views
Hi
I am facing one issue please help me out in this regard.Below is the query...

How can we have the detail tables created at runtime as we do not know the count of detail tables .The number depends on the data in the master table view.There can be one detail table or more also.If data in mastertable view can go beyond 2 child tables the we require 2 detail tables.
Please suggest....
Thanks
Eyup
Telerik team
 answered on 16 Mar 2015
1 answer
103 views
Hello,
I encounter a problem on my website, once it is deployed on production environment
The dialogs in the editor open fine, but when an action is performed in it (like changing directory in file manager), the POST request just hangs
If I try to see what happens in Fiddler, the request immediately sends a 504 error
The configuration in web.config is the same as my test environment, with handlers registered in system.webserver > handlers section (ASP.Net 4.0, Integrated mode)
I performed the same tasks in both environments (open a page with the editor, open the document manager dialog, browse to a subfolder)
It works fine in the test environment, but not in the production one, even though the requests seem identical to me...
I don't have direct access to the production environment so it is quite hard performing extra tests.

Does anyone have an idea of what would be happening, and how to solve this problem ?

Thanks a lot !
Ianko
Telerik team
 answered on 16 Mar 2015
6 answers
433 views
Hi,

Thank you for this new control, very useful one.

1) I would like to have the possibility to hide the thumbnails area (Image display area mode) (I don't want the ImageSlider or ImageSliderPreview dots)
Is there a proper way to do it ?
Right now i'm doing :
 <ThumbnailsAreaSettings Height="0" Width="0" />
<ToolbarSettings ShowThumbnailsToggleButton="false" />

2) On your client side binding demo, why is there a kind of loading animation when you switch from one picture to another ? (Reproduce it here : http://demos.telerik.com/aspnet-ajax/image-gallery/examples/data-binding/client-side-binding/defaultcs.aspx)

3) Could you provide a exemple (if possible) of how you would use the control with web service binding using PageMethods.GetData ? (similar to this demo : http://demos.telerik.com/aspnet-ajax/listview/examples/client/programmaticdatabinding/defaultcs.aspx)

Thanks
Arnaud
Maria Ilieva
Telerik team
 answered on 16 Mar 2015
2 answers
69 views
Hi,

I have moved my application from one web server to another, however the AsyncUpload is now failing with HTTP 500.

Can you point me in the right direction what I should have configured on IIS 8?


I cannot upload the Fiddler Log file since its a .txt file.
Hristo Valyavicharski
Telerik team
 answered on 16 Mar 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?