Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
695 views
Hi ther,
     I have a situation where I hav to change the text of "check all" string in the radCombobox. Can anybody help me with some goodies :)
Thanks in  advance
RT
Tracy Dryden
Top achievements
Rank 1
 answered on 20 Dec 2012
1 answer
77 views
Hi there,

I am struggling to insert items to the RadComboBox.

I use the following code

protected

 

void cbLocation_DataBound(object sender, EventArgs e)

{

//fill radcombobox

cbLocation.Items.Clear();

cbLocation.Items.Insert(0,

new RadComboBoxItem("<Make choice>", ""));

cbLocation.Items.Insert(1,

new RadComboBoxItem("EPO", "EPO"));

cbLocation.Items.Insert(2,

new RadComboBoxItem("PDC", "PDC"));

}

I get the following error when I click the Update or Cancel button in the Edit form:
Error: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500

Do you have any idea why the error occurs?

Thanx!

Marcel

Kevin
Top achievements
Rank 2
 answered on 20 Dec 2012
3 answers
321 views
Hi,
   i have select top 6 products from database with description and image path and showing them as 6 pics now 
   but i want to show it as slideshow (one large pic with desc).
   what's the best technique and how can I do it?
  sql server db, asp.net using c#
thanks in advance,
M
Sagar
Top achievements
Rank 1
 answered on 20 Dec 2012
0 answers
79 views
Is it possible to configure the radcombobox so it collapses when one clicks on the input area?
It opens when you click there, but won't close when you click there again. (As compared tot he regular asp combobox)

Cheers,
CJ
AnneArents
Top achievements
Rank 1
 asked on 20 Dec 2012
2 answers
63 views
Hi
i have a big problem with RadTreeView (version 2010.2.929.35).
The display of nodes is correct with Internet Explorer 8 and above but instead with Internet Explorer 7 when you hover the mouse over the node, the node it disappears!.
For testing i define OnClientMouseOver events:

<telerik:RadTreeView ID="RadTreeView1" runat="server" CheckBoxes="True" TriStateCheckBoxes="false"
CheckChildNodes="true" Width="170px" style="white-space:normal;" OnClientMouseOver="onMouseOver">
                            <DataBindings>
                                <telerik:RadTreeNodeBinding Expanded="False" />
                            </DataBindings>
                    </telerik:RadTreeView>
 and

function onMouseOver(sender, e)
{
        var node = e.get_node(); 
        node.onmouseover = null;
}

the result is that in Internet Explorer 8 and above the hover is properly disabled but in Internet Explorer 7, the node continues to disappear.
Can someone help me? Thank you very much.
Marco
Marco
Top achievements
Rank 1
 answered on 20 Dec 2012
17 answers
397 views
I'm in the process of making my web application compatible with iPad (Safari).
The problem is a RadPane, with Scrolling set to both, but also a ContentUrl set, will not scroll on an iPad.
In cases were no CententUrl is set, scrolling works fine.
Also scrolling (with ContentUrl is set) works fine on PC browsers.
Is there a solution or workaround for this?
Phil
Top achievements
Rank 1
 answered on 20 Dec 2012
1 answer
56 views
Hi,
I have RadPane scrolling issues in Opera Mobile version 12.10.ADR on two Android mobile devices:

1-tablet with Android 4.0.3
2-phone with Android 2.3.4

on both, the content pane doesnt want to scroll. Here is a simplified version having the issue (im using the "Nested Splitters" demo code):

<telerik:RadSplitter ID="Radsplitter5" runat="server" Width="700" Height="300" Orientation="Horizontal">
    <telerik:RadPane ID="Radpane2" runat="server" Height="150">
        Left Pane
    </telerik:RadPane>
    <telerik:RadSplitBar ID="Radsplitbar5" runat="server" CollapseMode="Forward">
    </telerik:RadSplitBar>
    <telerik:RadPane ID="Radpane6" runat="server" Scrolling="None">
        <telerik:RadSplitter ID="Radsplitter6" runat="server">
            <telerik:RadPane ID="Radpane7" runat="server">
                Nested Splitter Top Pane
            </telerik:RadPane>
            <telerik:RadSplitBar ID="Radsplitbar6" runat="server" CollapseMode="Forward">
            </telerik:RadSplitBar>
            <telerik:RadPane ID="Radpane8" runat="server" ContentUrl="http://www.telerik.com">
 
            </telerik:RadPane>
        </telerik:RadSplitter>
    </telerik:RadPane>
</telerik:RadSplitter><br />

I tried using the iPad workaround CSS to the pane (below) without success
-webkit-overflow-scrolling: touch !important ;
 overflow-y: scroll !important;

Please help,

TIA

Martin
Dobromir
Telerik team
 answered on 20 Dec 2012
2 answers
63 views
Hello Team;
Let me first provide some info, before discussing my problem.

Previously I had used EF and "ObjectCondext" for my Model. Then for each ASP Page that I needed DataSource, I had used ObjectDataSource (ODS). In the ODS declaration, I had identified the "Update" method which takes two parameters. One the modified object and the second the Original object.
In the Update method first I would attach the Original object to my ObjectContext first and the call "ApplyCurrentValues" Method from ObjectContext and pass the modified object. This method would then compare the properties between the two objects and create the proper SQL update command to update only Modified properties.

Now, with this new project, I'm using CodeFirst and DbContext and unfortunately DBContext does not have "ApplyCurrentValues" Method to pass two objects (before & after). It only takes the modified object.

But I'm running into a serious problem with Telerik Grid in this situation. Let's say I have a customer object with 20 properties and three Foreign key properties. If I connect the Grid to ObjectDataSource and have only 5 properties as "Editable" in the grid, when I do an update, the grid returns me an object with all the properties, but all the other 15 properties that were not editable and bound to TextBox (with Bind), they all become Null, including all my Foreign key fields.
In most cases, I don't need to have all the properties shown, Especially the foreign key values.

How do I solve this problem, that the grid returns me the original values of those properties that were not changed? 
..Ben
Ben Hayat
Top achievements
Rank 2
 answered on 20 Dec 2012
1 answer
188 views
I use pie chart of RadHtmlChart. In my graph i show legends. Now i want to click on legend and show some alert message 
Could it be possible.

Thanks,
Lokesh
Danail Vasilev
Telerik team
 answered on 20 Dec 2012
1 answer
85 views
Hi,

Does the html chart control supports legend click?. The requirement is to lauch a page on clicking of an item in the legend and pass the legend clicked. The control has "OnClientSeriesClicked" event for chart clicking. We are looking for something similar for legend click.


Thanks
Pavaman
Danail Vasilev
Telerik team
 answered on 20 Dec 2012
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?