Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
35 views
Hi ,

 im using ie 9 , and offen occurs an error binded with ajaxmanager , the code looks like this
var Ajarg ="sizechange"; 
var ajm =  $find("<%=RadAjaxManager1.ClientID %>");
 ajm.ajaxRequest(Ajarg);
and then I get a parameter count exepction in ie8 it's ok .

what can i do to fix this errror?
Maria Ilieva
Telerik team
 answered on 26 Apr 2011
5 answers
213 views
hi community,

the fileexplorer does not work within my ajaxified multipage. i have provided a demo.

without ajax:
http://brosenfelder.redirectme.net/testfileexplorerwithinmultipage/default.aspx

with ajax:
http://brosenfelder.redirectme.net/testfileexplorerwithinmultipage/defaultajaxon.aspx

the fileexplorer is on the second tab. cklick on refresh and then you can see that the refresh does not work.
is here somthing wrong with the code?

regards,
bernahrd

i have used this code to ajaxifie :
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableAJAX="true">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="Panel1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="Panel1" />
                    <telerik:AjaxUpdatedControl ControlID="RadMultiPage1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="RadMultiPage1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="Panel1" />
                    <telerik:AjaxUpdatedControl ControlID="RadMultiPage1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
    <div>
 
        <asp:Panel ID="Panel1" runat="server">
            <telerik:RadTabStrip ID="RadTabStrip1" runat="server" AutoPostBack="true" MultiPageID="RadMultiPage1">
                <Tabs>
                    <telerik:RadTab Text="Tab1" Selected="true" PageViewID="RadPageView1"></telerik:RadTab>
                    <telerik:RadTab Text="Tab2" PageViewID="RadPageView2"></telerik:RadTab>
                </Tabs>
            </telerik:RadTabStrip>
        </asp:Panel>
 
        <telerik:RadMultiPage ID="RadMultiPage1" runat="server" RenderSelectedPageOnly="true">
            <telerik:RadPageView ID="RadPageView1" runat="server" Selected="true">
                RadPageView1</telerik:RadPageView>
            <telerik:RadPageView ID="RadPageView2" runat="server">
                <telerik:RadFileExplorer ID="RadFileExplorer1" runat="server"
                    Width="960px"
                    Height="540px"
                    DisplayUpFolderItem="True" EnableCopy="True">
                    <Configuration
                        ViewPaths ="~/fileexplorer" UploadPaths ="~/fileexplorer" DeletePaths="~/fileexplorer/delete" />
                </telerik:RadFileExplorer>
            </telerik:RadPageView>
             
        </telerik:RadMultiPage>
Dobromir
Telerik team
 answered on 26 Apr 2011
1 answer
111 views
hi, I am facing a difficulty in understanding the retrieval of multiple images in this demo (here)
based on the code provided:

<asp:Repeater runat="server" ID="Repeater1" DataSourceID="SqlDataSource1" OnItemDataBound="repeater1_ItemDataBound">
<ItemTemplate>
       <div style="border: 1px solid #999999; float: left; margin: 3px; width: 125px; height: 125px;
         background-image: url('<%# Eval("ProductID", "../../../Img/Northwind/Products/{0}.jpg") %>');">
                    <div runat="server" id="smallImage" style="width: 125px; height: 125px; background-position: center;
                        background-repeat: no-repeat;">
                    </div>
                </div>
            </ItemTemplate>
        </asp:Repeater>


1) From where the background-image is taking the images, and what is this path?
2) How can I store Images in the database and assign them to each product accordingly?

Best Regards,
humam.
Marin Bratanov
Telerik team
 answered on 26 Apr 2011
3 answers
69 views
OK, I have a portal page that contains seven to ten user controls.  Each user control has a timer and is wrapped in an Ajax Panel.  When the portal pages loads it loads each user control in some kind of order.  What I am hoping for is that each user control will start loading independently of each other. 

So, I tried using the Ajax Manager on the master page with proxies on the user controls and still no luck.  I can only get a single ajax request to take place at a time.  How can I get two or three requests running at the same time?  Is this possible with Telerik controls?

Any adivce or suggestions?
Pavlina
Telerik team
 answered on 26 Apr 2011
4 answers
156 views
Hi,

I could successfully install the RAD Editor for my application and got it working for all the browsers.However, it is not woking for mozilla over web vpn connection. I cant type anything although the RAD rich text editor is visible.
Please let me know a fix for this.
Stanimir
Telerik team
 answered on 26 Apr 2011
5 answers
173 views
Hello,

I have a TreeView where clicking on a node should trigger a PostBack, but checking a CheckBox on a node should not trigger a PostBack.  Is this possible?  Currently checking the node fires the OnNodeClick event.

I believe it was working as I wanted prior to upgrading to version 2010.2.826.35.

<rad:RadTreeView ID="tree" OnNodeClick="NodeClick" AutoPostBack="true">

Thanks,
Jason
Jason
Top achievements
Rank 1
 answered on 26 Apr 2011
4 answers
333 views
I have my ItemsRequested handler working where on start of the page, this method gets hit and it loads the first set of items.  Scrolling through the list works well and each new page is requested and starts loading.

However, if I go into the combo box and right away I starting typing something which does not appear in the first page of results, the item is listed but I am no longer able to change the results and see the new matches appear in the list of the combo box.

The list is approx. 3,000 records, here are the relevant snips:

 

protected void RadComboBoxMedicationName_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e)

 

{

 

Database db = DatabaseFactory.CreateDatabase();

 

 

RadComboBox r = sender as RadComboBox;

 

 

DbCommand cmd = db.GetSqlStringCommand("SELECT Id, Description FROM refMedType WHERE Description LIKE '" + e.Context["Text"].ToString() + "%'");

 

 

DataTable data = (DataTable)(db.ExecuteDataSet(cmd)).Tables[0]; ;

 

 

try

 

{

 

int itemsPerRequest = 25;

 

 

int itemOffset = e.NumberOfItems;

 

 

int endOffset = itemOffset + itemsPerRequest;

 

 

if (endOffset > data.Rows.Count)

 

{

endOffset = data.Rows.Count;

}

 

if (endOffset == data.Rows.Count)

 

{

e.EndOfItems =

true;

 

}

 

else

 

{

e.EndOfItems =

false;

 

}

 

for (cint i = itemOffset; i < endOffset; i++)

 

{

r.Items.Add(

new RadComboBoxItem(data.Rows[i]["Description"].ToString(), data.Rows[i]["Description"].ToString()));

 

}

 

if (data.Rows.Count > 0)

 

{

e.Message =

String.Format("Items <b>1</b>-<b>{0}</b> out of <b>{1}</b>", endOffset.ToString(), data.Rows.Count.ToString());

 

}

 

else

 

{

e.Message =

"No matches";

 

}

}

 

catch (Exception ex)

 

{

e.Message =

"No matches";

 

}

}


 

 

<telerik:RadComboBox ID="RadComboBoxMedicationName" ShowWhileLoading="true" EmptyMessage="Enter medication name" Text='<%# Bind( "MedicationName" ) %>' LoadingMessage="Loading..." runat="server" Width="250px" Height="200px" AllowCustomText="True" ShowMoreResultsBox="true" EnableLoadOnDemand="True" MarkFirstMatch="True" OnItemsRequested="RadComboBoxMedicationName_ItemsRequested" EnableVirtualScrolling="true" />

 

 

 

 

 

<asp:RequiredFieldValidator ID="RequiredFieldValidatorMedicationName" runat="server" ControlToValidate="RadComboBoxMedicationName" Display="Dynamic" ErrorMessage="RequiredFieldValidator" ToolTip="Medication required."><br />* Medication required.</asp:RequiredFieldValidator>

 

 

 

Dimitar Terziev
Telerik team
 answered on 26 Apr 2011
1 answer
57 views

I'm using RadGrid with drag and drop to a RadScheduler

The system I'm designing is for a TV Show, where each screenplay have several scripts

The user can schedule each script to be shot/recorded at a time, or to get a entire screenplay and schedule it at once.

In my grid, both screenplay and scripts are rows, so user can drag any.

Question 1 - Is it possible to have indented display for this?

Question 2 - Is it possible that when a user drag a row that is a screenplay, all child scripts go with?

Thanks,

Andre

Marin
Telerik team
 answered on 26 Apr 2011
1 answer
53 views
Hi,

I am using teleric grid in IIS7 and sometimes rad grid is not renering while i am using iis7 but the same code has been working perfectally in IIS6.

Please suggest.
Veli
Telerik team
 answered on 26 Apr 2011
5 answers
91 views
Hi,

Is it possible to use the RADChart control to display a graphical representation of disk space used:

"20.0 MB out of 100.00 MB being used."

I just want to display a simple static horizontal bar that illustrates the percentage of disk space used without any grid lines or anything.

Thanks,
Andy
Andy Byrne
Top achievements
Rank 1
 answered on 26 Apr 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?