Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
93 views
Hello,

I'am use a radwindows an show the radwindows in javascript :

var oWnd = $find("DialogWindow");
oWnd.setUrl(rcbox.newUrl);
oWnd.setSize(380,200);
oWnd.add_close(OnClientClose);
oWnd.show();

when closing the window with the following code, IE resend information
function GetRadWindow() {
        var oWindow = null;
        if (window.radWindow) oWindow = window.radWindow;
        else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;
        return oWindow;
    }
    
    function CloseRad() {
        var oWnd = GetRadWindow();
        oWnd.close();
    }


Citt
Top achievements
Rank 1
 answered on 26 May 2009
14 answers
507 views
Is there a way to get the functionality of the RadComboBox ExternalCallBackPage method with the Prometheus controls?
Cedric Debattista
Top achievements
Rank 1
 answered on 26 May 2009
2 answers
62 views
Hi,

I can't find a proper set of release notes for 2009 Q1.

I've already looked at the "What's new in this version?" link in the account download area. It does not mention a single breaking change, yet I know there are breaking changes -- I've seen several references on these forums to breaking changes made between 2008 Q3 and 2009 Q1, as well as seen mentions of it in some of your demos like the Rad Ajax Loading Panel loading images being removed from the WebResource.axd.

Where is the list of breaking changes?

-Al
apb
Top achievements
Rank 1
 answered on 26 May 2009
1 answer
136 views

Please find below, code snippets from my RadGrid. The grid has a column which is editable using a drop down RadComboBox. The basic idea is to select a new technician (ASSIGNED_TO) from the drop down RadComboBox list and insert the new record in a different table.

On the server side, the insert command is working just fine. I can stop the debugger and verify the records in the database. But on the client side,  <%#DataBinder.Eval(Container.DataItem,"ASSIGNED_TO")%> is updating all similar record in the table with the new technician name (ASSIGNED_TO), creating duplicates.

How can I prevent that from happening? Is there a property that can be enabled/disabled?

(1) SERVER SIDE INSERT STATEMENT

                sqlConnection.Open();

                string insertQuery = "INSERT INTO [AssistTech] (" +
                                                               "[PARENT_CHANGE], " +
                                                               "[NUMBERPRGN], " +
                                                               "[ASSIGNED_DEPT], " +
                                                               "[ASSIGNED_TO], " +
                                                               "[CATEGORY], " +
                                                               "[LOCATION], " +
                                                               "[PLANNED_START], " +
                                                               "[PLANNED_END], " +
                                                               "[SLA_START], " +
                                                               "[SLA_DEADLINE], " +
                                                               "[STATUS], " +
                                                               "[ROLE]) VALUES (" +
                                                                ticket + "," +
                                                                task + ",'" +
                                                                department + "','" +
                                                                technician + "','" +
                                                                category + "','" +
                                                                location + "','" +
                                                                startDate + "','" +
                                                                endDate + "','" +
                                                                slaStartDate + "','" +
                                                                slaDeadline + "','" +
                                                                status + "','" +
                                                                role + "')";

 

 

(2) CLIENT SIDE CODE
<telerik:GridTemplateColumn UniqueName="TemplateColumn" HeaderText="Assist" SortExpression="ASSIGNED_TO"
                                CurrentFilterFunction="Contains">
                                <ItemTemplate>
                                    <%#DataBinder.Eval(Container.DataItem, "ASSIGNED_TO")%>
                                </ItemTemplate>
                                <EditItemTemplate>
                                    <telerik:RadComboBox runat="server" ID="RadComboBox1" DataTextField="ASSIGNED_TO"
                                        DataValueField="ASSIGNED_TO" EnableLoadOnDemand="True" EnableItemCaching="True"
                                        OnItemsRequested="RadComboBox1_ItemsRequested" Height="140px" SelectedValue='<%#Bind("ASSIGNED_TO") %>'
                                        DataSourceID="SqlDataSource5" AppendDataBoundItems="False" Sort="Ascending">
                                    </telerik:RadComboBox>
                                </EditItemTemplate>
                            </telerik:GridTemplateColumn>    



Thanks,
Baxis

Georgi Krustev
Telerik team
 answered on 26 May 2009
1 answer
132 views
How can I start a URL at the start of RadTabStrip put by default the first tab automatically loads the example Web page (www.google.com)
Alex Lawson
Top achievements
Rank 1
 answered on 26 May 2009
1 answer
78 views
Hi,
I am getting the follwoing error when i install the RadControls_for_ASP.NET_AJAX_2009_1_402_trial.exe in my VISTA OS
File "C:\Users\<User Name>\AppData\Local\Temp\InstallQSF.dll" can not be found. Make sure the file is on targer system or installed already
What should i do to resolve this Issue?

Pls. Help me out
Paul
Telerik team
 answered on 26 May 2009
0 answers
81 views
Dear Sir/Madam,

I am in a problem.
I have a javascript method and calling this method from codebehind, but object is not found whenever
i am calling this javascript method client side then it working fine.
Code is as follows:

Javascript:

function Test()
{
var a =  $find('<%=ComboBox1.ClientID%>').get_value();
alert(a);
}


protected void btn_click(object sender, EventArgs e)
{
  ScriptManager.RegisterClientScriptBlock(Page, Page.GetType(), "script", "Test();", true);
}


Please solve............

Thanks & Regards
Brijendra Pandey
Brijendra Kumar
Top achievements
Rank 1
 asked on 26 May 2009
3 answers
180 views
Dear Telerik,

I would like to set the focus to the text box in the default implementation of the radPrompt when it opens. I am using the Mac skin. I found this forum post, but I don't think it applies to the Prometheus version:

http://www.telerik.com/community/forums/thread/b311D-cdbbb.aspx

How do I go about doing this?

Thanks,

Don
Maxime
Top achievements
Rank 2
 answered on 26 May 2009
6 answers
234 views
Hello, i tried to build a release version of RadControls with my own SNK file, i read the Instruction.doc and followed every single step.
At the end of the process “C:\Nant\bin\nant” net35   i get an error:

buildDesigner:

buildProject:

BUILD FAILED

C:\Projekte\RadControls_for_ASP.NET_AJAX_2009_1_402_Source\RadControlsAjaxSource
\Build\default.build(127,4):
External Program Failed: C:\WINDOWS\Microsoft.Net\Framework\v3.5\MSBuild.exe (re
turn code was 1)

Total time: 117.3 seconds.



I need a assembly with a new ID, how to solve this problem?

anonym
Top achievements
Rank 1
 answered on 26 May 2009
1 answer
158 views
I'm trying to use the Tooltip tool to create a mouseover that looks like the balloon that shows up on Google Maps (rounded edges, longer tail, etc).  Is there any way to do this?
Martin
Telerik team
 answered on 26 May 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
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
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?