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

I have done for radgrid using radclientdatasource wcf for one table using sample telerik demo. but i am not able to get values relationship table. please help me how to we get data more then one table using radclientdatasource wcf for radgrid.


Thanks in Advance,
Dhamu
Kostadin
Telerik team
 answered on 13 Jan 2015
9 answers
369 views
Hello,

Our project uses several UserControls that are used on different pages.
We load these UserControls dynamically in the page whenever they are needed.

This all works great, and fast, in our development environment.
But when we run it on the production server it takes ages.

We narrowed down the "slowdown" to the following lines of code:

Trace.Write("RegiStar""Start toevoegen mat_Ereigniseingabe"); 
 
        string userControlName = "Mat_Tab_DetailInventar.ascx";  
        Control userControl = Page.LoadControl(userControlName); 
        userControl.ID = e.PageView.ID + "_userControl"
        e.PageView.Controls.Add(userControl); 
 
Trace.Write("RegiStar""einde toevoegen mat_Ereigniseingabe"); 

This part of code takes .09 seconds on our development machine but takes almost 17 seconds on our production server.
What could make this run so slow?

When we trace the PageLoad in "mat_tab_detailinventar.ascx" we see that there is no delay there. It runs almost as fast as on our development server.

For your information.
Our development machines are all English wit XP. The production server is a German Win2003 SBS server.

Does anybody have an idea?

Thanks

Jelte
Boyan Dimitrov
Telerik team
 answered on 13 Jan 2015
4 answers
462 views
<telerik:ChartSeries DataXColumn="Date" DataYColumn="pct" Name="pct" Type="Line">

my data looks like
pct     reportDate
54      2012-09-01 00:00:00.000
65      2012-10-01 00:00:00.000  
57      2012-11-01 00:00:00.000   

when I put DataXColumn="reportDate"
I get an error saying column is not in numeric
when I put "Date" it shows chart but has 1900 dates.

do I just need to have the reportDate formatted in a specific format for it to know to use them as type dates?
do I have to have code behind that sets the dates in the databind?
Doug
Top achievements
Rank 1
 answered on 13 Jan 2015
3 answers
131 views
Hi,

Our application is facing issues in when its trying to render a page with telerik controls in ie11. We have also performed few solutions but still the window blanks out in ie11. 

Please find the Document attached with the screenshots for detailed explanation. Looking forward to the solution soon.
Ianko
Telerik team
 answered on 13 Jan 2015
5 answers
718 views
Hi!

How do I implement the collapsing/burger menu that is used at www.Telerik.com (re-size the screen width to make it smaller and you get a burger menu) ?

Code snippet would be nice. Sample web page even nicer.

Thanks
Ivan Zhekov
Telerik team
 answered on 13 Jan 2015
1 answer
114 views
Hi there,

I am able to bind a datatable to a radmenu.

I want to show images to the rad items and use a column in the datatable for this.
I cannot find the right property to the radmenu.

Anybody any idea??


Regards,

Marcel


Ivan Danchev
Telerik team
 answered on 13 Jan 2015
1 answer
115 views
Good day.   

I want to delete the Appointment inside the AdvancedEditForm of RadScheduler. So I added a Button in the form with the following attributes. 

<asp:Button ID="btnDeleteShift" runat="server" Text="Delete " Enabled="true" CommandName ="Delete" OnClientClick="return confirm('Are you sure you want to delete this appointment?')" OnClick="btnDeleteShift_Click" CausesValidation="false" />

 So when the User clicks OK in the javascript confirmation box, I will execute the code to delete: 

protected void RadScheduler1_AppointmentCommand(object sender, AppointmentCommandEventArgs e) { if (e.CommandName == "Delete") {  RadScheduler1.DeleteAppointment(e.Container.Appointment, false);  } }

The Problem with this is that when the appointment is deleted, the advancedEditForm will still be shown on screen with the values of the Appointment that have been deleted.  

1.  What  code should I use that I can execute that closes that advancedEditForm ? I should execute that one under the AppointmentDelete Event.  

2. Or, is there a code of the advanceeditform where can I use the existing Delete Confirmation Message Window of the appointment to be fired when I click My custom button, then afterwards closes the AdvancedEditForm?  

3. Or, is there a built in Delete function of the AdvanceEditForm to show a delete button and provides the delete functionality?

From what I see, the appointment can be deleted only when I click the X button on the appointment in the radscheduler.   

Hoping for your help and support. 
Thank you very much,  
Rommel 
Boyan Dimitrov
Telerik team
 answered on 13 Jan 2015
4 answers
330 views
Hey all.

I have this problem, when i resize the browser and the searchboxs parent div has display:none; When i display the searchbox again, position of the buttons, and the textfield is pushed in.

i've created a small snippet, to show you what i mean.

The problem first occurred when i was implemented the searchbox into a bootstrap navigation.

Any help would be appreciated!

<
div class="testClass">
    <telerik:RadSearchBox ID="RadSearchWebTimetable" runat="server" SearchContext-ShowDefaultItem="false" HighlightFirstMatch="True" OnSearch="SearchBox_OnSelected" MinFilterLength="2" Width="100%" EmptyMessage="Søgetekst">
        <DropDownSettings Height="300" Width="400">
            <ClientTemplate>
                <div class="#= DataItem.cssClass #">
                    #= Text #
                    <p style="margin-bottom: 0px; margin-top: -15px;">
                        <small class="text-muted text-small">
                            #= DataItem.Description #
                        </small>
                    </p>
                </div>
            </ClientTemplate>
        </DropDownSettings>
        <WebServiceSettings Method="UMS_Search" path="WebServices/Search.asmx" />                               
    </telerik:RadSearchBox>
</div>
 
<asp:Button runat="server" OnClientClick=" $('.testClass').hide();return false; " Text="Hide"/>
<asp:Button runat="server" OnClientClick=" $('.testClass').show();return false; " Text="Show"/>
Dimitar
Telerik team
 answered on 13 Jan 2015
6 answers
323 views
I am attempting to use the manual CRUD processing of data in my RadGrid via the DataForm.  I am using .net 4.5 and Visual Studo 2013, language VB.net. For the insert, I am able to display the insert form and enter data, the question I have is how to retrieve the entered values from the form in the code behind.  I want to interrogate the entered values and take some additional action before using a SQL stored procedure to insert the data.  The code from the _ItemInserting routine is:

        Dim sCatName as string
        Dim insertedItem As RadDataFormEditableItem = TryCast(e.DataFormItem, RadDataFormEditableItem)
        Dim newValues As New Hashtable()

        insertedItem.ExtractValues(newValues)

        For Each entry As DictionaryEntry In newValues

            sCatName = entry.Value

        Next

In this case the entry.value is NULL.

How do I get to the data?

Thanks 
Viktor Tachev
Telerik team
 answered on 13 Jan 2015
1 answer
357 views
hi,
i have a rad wizard with previous and next button and I made cancel button as save as draft . When I click next button and if there are any required field validators it shows the message to fill required field validators. When I cancel after having validation mesSages on the screen it's not firing cancel event because there are validations on the page . How to bypass the validations and on click of save as draft the event needs to be fired without checking any validations . Can you please help me in resolving this
Boyan Dimitrov
Telerik team
 answered on 13 Jan 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?