Telerik Forums
UI for ASP.NET AJAX Forum
18 answers
429 views
when i run the upgrade wizard within VS 2010

i get this error that affects the upgrade

The item .... \BusinessLogic\web.config could not be found in your workspace, or you do not have permission to access it.

the upgrade wizard also shows 3 warnings...

Assembly Reference "C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q1 2012\Bin40\Telerik.Web.UI.dll" was not updated properly. This usually happens in Visual Studio 2010 when an assembly exists both in the GAC and in a local folder. Please, use the GAC reference instead.

how do i find the GAC reference? and use it where? replace my existing references in source and businesslogic with the dll in GAC?

michael
Top achievements
Rank 1
 answered on 09 Feb 2017
1 answer
68 views

Is there anyway in JavaScript to Show/Hide the RadMenu as a whole?  I've been looking in the documentation and I can't find anything.  

(.set_visible does not seem to work.)

Boris
Top achievements
Rank 1
 answered on 09 Feb 2017
1 answer
186 views

In ItemDataBound I do this:

Private Sub grdSummary_ItemDataBound(sender As Object, e As GridItemEventArgs) Handles grdSummary.ItemDataBound         '**************     

    For Each item As GridHeaderItem In grdSummary.MasterTableView.GetItems(GridItemType.Header)                 

               For intLcv = 2 To item.Cells.Count - 1                     

                   If IsDate(item.Cells(intLcv).Text) And Not item.Cells(intLcv).Text.Contains(vbCrLf) Then                      

                       item.Cells(intLcv).Text = item.Cells(intLcv).Text & vbCrLf & CDate(item.Cells(intLcv).Text).ToString("ddd").ToString                     

                    End If                 

              Next             
     Next

End Sub

 

The problem is the Date and day are right next to each other.  I need about 1-2 px between

Is there any way to do this?  I have attached a screen shot.

Mark
Top achievements
Rank 1
 answered on 09 Feb 2017
10 answers
675 views
Is there a way to customize the buttons on the bottom command area?  It seems like you can with the WinForms version but not the ASP.NET Ajax version.  We'd like to add our own buttons into the process (such as 'Skip Step' which will move forward without saving as opposed to 'Next' which would save and move forward).
Peter Milchev
Telerik team
 answered on 09 Feb 2017
0 answers
108 views

Hello,

I have a grid in batch edit/cell mode, and everything works.

My problem is that one of the fields is very large - potentially two or three paragraphs of text. I'd like to move this onto it's own row, if possible. I've tried using a radtextbox within a NestedViewTemplate and DetailItemTemplate, and I can get the data to display in both, but I can't figure out how to include it in batch saves. <%#Bind("FieldName")%> doesn't work. 

What would be the best way to accomplish this?

Here's a sample of what I have:

<telerik:RadGrid ID="RadGrid1" runat="server" AllowAutomaticUpdates="true" AutoGenerateColumns="false" DataSourceID="DataSource1">
     <MasterTableView CommandItemDisplay="TopAndBottom" DataKeyNames="ItemNumber" EditMode="Batch" AutoGenerateColumns="false" 
        DataSourceID="DataSource1">
        <BatchEditingSettings EditType="Cell" HighlightDeletedRows="true" />
        <NestedViewTemplate>
             <telerik:RadTextBox ID="txtDesc" runat="server" Text='<%#Bind("Desc")%>' />
         </NestedViewTemplate>
         <Columns>
             <telerik:GridBoundColumn UniqueName="ItemNumber" DataField="ItemNumber" HeaderText="Item Number" />
         </Columns>
     </MasterTableView>
 </telerik:RadGrid>
 <asp:SqlDataSource runat="server" ID="DataSource1" ConnectionString="(ConnectionString)" ConflictDetection="OverwriteChanges"
     SelectCommand="SELECT * FROM [Table]"
     InsertCommand="INSERT INTO [Table] ([Name], [Desc]) VALUES (@Name, @Desc)"
     UpdateCommand="UPDATE [Table] SET [Name]=@Name, [Desc]=@Desc WHERE [ItemNumber]=@ItemNumber">
     <InsertParameters>
         <asp:Parameter Name="Name" Type="String" />
         <asp:Parameter Name="Desc" Type="String" />
     </InsertParameters>
     <UpdateParameters>
         <asp:Parameter Name="Name" Type="String" />
         <asp:Parameter Name="Desc" Type="String" />
         <asp:Parameter Name="ItemNumber" Type="Int32" />
     </UpdateParameters>
 </asp:SqlDataSource>
josh
Top achievements
Rank 1
 asked on 09 Feb 2017
7 answers
226 views

Is there a way to specify the height when in inline mode?  That is, a fixed height?

 

<telerik:RadEditor ID="RadEditor1" runat="server" Height="100px" EditType="Inline"></telerik:RadEditor>

 

I'm using Inline mode in order to subscribe to OnClientInlineEditCompleted to cause a postback when the user changes the value of the control.

Rumen
Telerik team
 answered on 09 Feb 2017
11 answers
249 views
hi,

I am trying to extract the info of an attribute once the drop action is done.

I tried doing "var selectedStaffID = scheduler.getAppointmentFromDomElement(htmlElement).get_attributes("StaffID");"
However, that didn't help me.
How can i get the data of the scheduler's attribute on a spot where the appointment is dropped ?
thank you
01.function rowDropping(sender, eventArgs) {
02.                    // Fired when the user drops a grid row
03.                    var htmlElement = eventArgs.get_destinationHtmlElement();
04.                    var scheduler = $find('<%= RadScheduler2.ClientID %>');
05. 
06.                    if (isPartOfSchedulerAppointmentArea(htmlElement)) {
07.                         
08.                        // The row was dropped over the scheduler appointment area
09.                        // Find the exact time slot and save its unique index in the hidden field
10.                        var timeSlot;
11.                        //var selectedStaffID = scheduler.getAppointmentFromDomElement(htmlElement).get_attributes("StaffID");
12.                        //alert(selectedStaffID);
13.                        if ($telerik.$(htmlElement).parents(".rsApt").length != 0)
14.                            timeSlot = scheduler.getAppointmentFromDomElement(htmlElement).get_timeSlot();
15.                        else
16.                            timeSlot = scheduler._activeModel.getTimeSlotFromDomElement(htmlElement);
17.                        $get("<%=TargetSlotHiddenField.ClientID %>").value = timeSlot.get_index();
18. 
19.                        // The HTML needs to be set in order for the postback to execute normally
20.                        eventArgs.set_destinationHtmlElement("<%=TargetSlotHiddenField.ClientID %>");
21.                    }
22.                    else {
23.                         
24.                        // The node was dropped elsewhere on the document
25.                        eventArgs.set_cancel(true);
26.                    }
27.                }
Vessy
Telerik team
 answered on 09 Feb 2017
1 answer
77 views

Hi,

 

We discovered that in the latest version the RadWindow close function is no longer working when oWnd.maximize() is used.

This happens independently which skin is used.

Marc

Marin Bratanov
Telerik team
 answered on 09 Feb 2017
1 answer
226 views

Hello everyone

i have a problem with RadTabStrip and RadMultiPage. Please help me

i have a page that contain a RadTabStrip (with 2 Tab) and an RadMultiPage (with 2 RadPageView).

I've used Bootstrap inside RadPageView. but When I see it in the browser does not show me anything!

This problem occurs that inside RadPageView of I use Bootstrap classes for my controls (e.g input element or asp:textbox with bootstrap classes)

Please Help me

Below is my code:

    <div class="container-fluid" style="font-family: Tahoma;">
        <div class="row">
            <div class="col-lg-9 col-md-9 col-sm-12 col-xs-12 pull-right">
                <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server">
                    <telerik:RadTabStrip RenderMode="Lightweight" SelectedIndex="0" runat="server" ID="RadTabStrip1" MultiPageID="RadMultiPage1" Skin="Material">
                        <Tabs>
                            <telerik:RadTab Text="New user" Width="200px"></telerik:RadTab>
                            <telerik:RadTab Text="Edit User" Width="200px"></telerik:RadTab>
                        </Tabs>
                    </telerik:RadTabStrip>

                    <telerik:RadMultiPage RenderSelectedPageOnly="true" RenderMode="Auto" SelectedIndex="0" ID="RadMultiPage1" runat="server">
                        <telerik:RadPageView ID="RadPageView1" runat="server">
                            page 1
                        </telerik:RadPageView>

                        <telerik:RadPageView ID="RadPageView2" runat="server">
                            <%-- Register Form --%>
                            <div class="panel panel-default" runat="server">
                                <div class="panel-heading" runat="server">
                                    <strong>User Informations</strong>
                                </div>
                                <div class="panel-body" id="panelBody" runat="server">
                                    <div class="main-login main-center col-lg-offset-2" style="margin-top: -30px;">
                                        <div class="form-group">
                                            <label for="name" class="col-lg-12 control-label">name</label>
                                            <div class="col-lg-10">
                                                <div class="input-group">
                                                    <span class="input-group-addon"><i class="fa fa-user fa" aria-hidden="true"></i></span>
                                                    <input name="name" id="txtName" type="text" runat="server" placeholder="name (max 100 char)" class="form-control input-md" maxlength="100" />
                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" SetFocusOnError="true" ControlToValidate="txtName" runat="server" Display="None" ErrorMessage="This field is required"></asp:RequiredFieldValidator>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <%-- End Register --%>
                        </telerik:RadPageView>

                    </telerik:RadMultiPage>
                </telerik:RadAjaxPanel>
            </div>
        </div>
    </div>

 

soroush
Top achievements
Rank 2
 answered on 08 Feb 2017
2 answers
224 views
I get a JS exception error message, when I add new and delete new create row and attempt to save.
I have wired a button to save changes.
$find(radgridid).get_batchEditingManager().saveChanges($find(radgridid).get_masterTableView())
RadGrid's is in "Batch" mode and the EditType is "Row".

JS exception error message:
Uncaught TypeError: Cannot read property 'cells' of null
Tony
Top achievements
Rank 1
 answered on 08 Feb 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?