Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
177 views
If RadClientDataSource is used for both the symbol and connection bound data sources, will the data sources, if they are to a SQL Server database, be updated when changes are made on the diagram; e.g. symbol title changed, new symbol or connection added, etc.?

If not, is there another approach or a relatively easy workaround to do this?

Thanks,

Donald
khadeer
Top achievements
Rank 1
 answered on 11 Jan 2017
1 answer
254 views
Is there any way to show a preview or thumbnail of an image uploaded through CloudUpload?

My issue is that I'm letting users upload files to S3, but until a postback has occurred, I can't set them to be publicly viewable by any sort of thumbnail/preview by the user.
Nencho
Telerik team
 answered on 11 Jan 2017
1 answer
409 views

Hi to all!

 

I have an issue with a RadComboBox during an insert.

 

Context:

I've made an ASP.Net app for my company to visualize dependencies between our apps by using a RadGrid for raw data and D3.JS for graphic visualization. The logic is easy: FromApp (id) is link to ToApp (id) and you have a comment field too. To do a new insertion I use the "Add new record" button from the grid, in the EditTemplate I've put one FromAppRadComboBox where you can select one app, a ToAppRadComboBox with checkboxes where you can select all the apps link to the one selected befor and a Textbox for comments. For having a record per link, I've made a CustomInsertion function called during the OnInsertCommand of the grid.

Problem:

Regardless the amount of app I check in the ToAppRCB, it will always inserts the first item in addition to the others. I manage to fix this by using a default item, but once the insertion is done, when the app want to refresh then display the grid, it breaks, because of a convertion problem (maybe because of Entity Framework).

 

Code-Behind:

001.#region
002.using ServerMap.DAL;
003.using System;
004.using System.Collections;
005.using System.Collections.Generic;
006.using System.Data;
007.using System.Data.SqlClient;
008.using System.Linq;
009.using System.Web;
010.using System.Web.Configuration;
011.using System.Web.UI;
012.using System.Web.UI.WebControls;
013.using Telerik.Web.UI;
014. 
015.#endregion
016. 
017.namespace ServerMap
018.{
019.    public partial class ApplicationsDependencies : Page
020.    {
021.        private List<int> selectedToApplications = new List<int>();
022. 
023.        protected void Page_Load(object sender, EventArgs e)
024.        {
025.            if (!IsPostBack)
026.            {
027.                string FromApplicationName = HttpContext.Current.Request.QueryString["FromApplicationId"];
028.                string ToApplicationName = HttpContext.Current.Request.QueryString["ToApplicationId"];
029. 
030.                if (!string.IsNullOrEmpty(FromApplicationName) || !string.IsNullOrEmpty(ToApplicationName))
031.                {
032.                    string filterColumn = "",
033.                        filterValue = "";
034.                    if (!string.IsNullOrEmpty(FromApplicationName))
035.                    {
036.                        filterColumn = "FromAppId";
037.                        filterValue = FromApplicationName;
038.                    }
039.                    else
040.                    {
041.                        filterColumn = "ToAppId";
042.                        filterValue = ToApplicationName;
043.                    }
044. 
045.                    ApplicationDependency.MasterTableView.FilterExpression =
046.                        String.Format(
047.                            "(it.[{0}] = {1}) && ((it.FromApplication.[IT_DECOMMISSION_DATE] is null) && (it.ToApplication.[IT_DECOMMISSION_DATE] is null))",
048.                            filterColumn, filterValue);
049.                    ;
050.                    GridColumn gridColumn = ApplicationDependency.MasterTableView.GetColumnSafe(filterColumn);
051.                    gridColumn.CurrentFilterFunction = GridKnownFunction.EqualTo;
052.                    gridColumn.CurrentFilterValue = filterValue;
053.                    ApplicationDependency.Rebind();
054.                }
055.                else
056.                {
057.                    ApplicationDependency.MasterTableView.FilterExpression =
058.                        "((it.FromApplication.[IT_DECOMMISSION_DATE] is null) && (it.ToApplication.[IT_DECOMMISSION_DATE] is null))";
059.                    ApplicationDependency.Rebind();
060.                }
061.            }
062.        }
063. 
064.        //protected void ToApplicationCombobox_OnDataBound(object sender, EventArgs e)
065.        //{
066.        //    var combo = (RadComboBox)sender;
067.        //    combo.Items.Insert(0, new RadComboBoxItem("Please select an application", "-1"));
068.        //}
069. 
070.        //protected void PreSelectItem(string comboboxname, string field, GridItemEventArgs e)
071.        //{
072.        //    GridEditableItem editableItem = e.Item as GridEditableItem;
073. 
074.        //    RadComboBox combo = (RadComboBox)editableItem.FindControl(comboboxname);
075.        //    if (!string.IsNullOrEmpty(editableItem[field].Text) && editableItem[field].Text != " ")
076.        //    {
077.        //        RadComboBoxItem selectedItem = new RadComboBoxItem
078.        //        {
079.        //            Text = editableItem[field].Text.ToString(),
080.        //            Value = editableItem[field].Text.ToString()
081.        //        };
082.        //        combo.Items.Add(selectedItem);
083.        //        if (combo.CheckBoxes)
084.        //        {
085.        //            combo.Items.FindItemByValue(editableItem[field].Text).Checked = true;
086.        //        }
087.        //        selectedItem.DataBind();
088.        //        Session[field] = selectedItem.Value;
089.        //    }
090.        //}
091. 
092.        protected void CustomCreation(object sender, GridCommandEventArgs e)
093.        {
094.            var FromDropDown = (RadComboBox)e.Item.FindControl("FromApplicationCombobox");
095.            var ToDropDown = (RadComboBox)e.Item.FindControl("ToApplicationCombobox");
096.            var CommentsTextBox = (RadTextBox)e.Item.FindControl("CommentsTextBox");
097. 
098.            try
099.            {
100.                using (var db = new ServerMapContext())
101.                {
102.                    System.Data.Entity.DbSet<AppToAppDependency> context = db.Set<AppToAppDependency>();
103. 
104.                    foreach (RadComboBoxItem item in ToDropDown.CheckedItems)
105.                    {
106.                        if (!LinkExists(Convert.ToInt32(FromDropDown.SelectedValue), Convert.ToInt32(item.Value)))
107.                        {
108.                            var itemToInsert = new AppToAppDependency
109.                            {
110.                                FromApp = Convert.ToInt32(FromDropDown.SelectedValue),
111.                                ToApp = Convert.ToInt32(item.Value),
112.                                Comment = CommentsTextBox.Text
113.                            };
114.                            context.Attach(itemToInsert);
115.                            context.Add(itemToInsert);
116.                            db.SaveChanges();
117.                        }
118.                    }
119.                }
120.            }
121.            catch (EntityDataSourceValidationException validationException)
122.            {
123.                ApplicationDependency.Controls.Add(new LiteralControl("ENTITY: Unable to insert application dependencie(s). Reason: " + validationException.Message));
124.                e.Canceled = true;
125.            }
126.            catch (Exception ex)
127.            {
128.                ApplicationDependency.Controls.Add(new LiteralControl("Unable to insert application dependencie(s). Reason: " + ex.Message));
129.                e.Canceled = true;
130.            }
131.            finally
132.            {
133.                e.Canceled = false;
134.            }
135.        }
136. 
137.        protected bool LinkExists(int from, int to)
138.        {
139.            try
140.            {
141.                using (var db = new ServerMapContext())
142.                {
143.                    System.Data.Entity.DbSet<AppToAppDependency> context = db.Set<AppToAppDependency>();
144. 
145.                    var test = context.Where(x => x.FromApp == from && x.ToApp == to);
146. 
147.                    if (test.Any())
148.                    {
149.                        return true;
150.                    }
151.                    return false;
152.                }
153.            }
154.            catch (Exception ex)
155.            {
156.                ApplicationDependency.Controls.Add(new LiteralControl(ex.Message));
157.                return false;
158.            }
159.        }
160. 
161.        //protected void AppCombobox_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e)
162.        //{
163.        //    InitAppList(sender);
164.        //}
165. 
166.        //protected void InitAppList(object sender)
167.        //{
168.        //    IList<Applications_List> apps = null;
169.        //    using (var db = new ServerMapContext())
170.        //    {
171.        //        System.Data.Entity.DbSet<Applications_List> context = db.Set<Applications_List>();
172. 
173.        //        apps = context.Select(x => x).Where(x => x.IT_DECOMMISSION_DATE == null).OrderBy(x => x.BU_APP_NAME).ToList();
174.        //    }
175. 
176.        //    RadComboBox Combobox = (RadComboBox)sender;
177. 
178.        //    foreach (var app in apps)
179.        //    {
180.        //        RadComboBoxItem item = new RadComboBoxItem();
181.        //        item.Text = app.BU_APP_NAME;
182.        //        item.Value = Convert.ToString(app.id);
183.        //        if (!string.IsNullOrEmpty(item.Text) && item.Text != " ")
184.        //        {
185.        //            Combobox.Items.Add(item);
186.        //            item.DataBind();
187.        //        }
188.        //    }
189.        //}
190.    }
191.}

 

ASPX:

001.<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true"
002.    CodeBehind="ApplicationsDependencies.aspx.cs" Inherits="ServerMap.ApplicationsDependencies" %>
003. 
004.<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder" runat="server">
005. 
006.    <telerik:RadScriptManager runat="server" />
007.    <telerik:RadSkinManager runat="server" Skin="Metro" />
008. 
009.    <telerik:RadGrid
010.        ID="ApplicationDependency"
011.        runat="server"
012.        DataSourceID="AppToAppDependenciesDS"
013.        AutoGenerateColumns="False"
014.        AllowPaging="True"
015.        AllowFilteringByColumn="True"
016.        PageSize="50"
017.        AllowCustomPaging="True"
018.        AllowAutomaticDeletes="True"
019.        AllowAutomaticInserts="True"
020.        AllowAutomaticUpdates="False"
021.        ClientSettings-AllowColumnsReorder="false"
022.        OnInsertCommand="CustomCreation"
023.        AllowSorting="True"
024.        CellSpacing="0"
025.        GridLines="None"
026.        Height="800px">
027. 
028.        <ClientSettings>
029.            <Scrolling
030.                ScrollHeight="700px"
031.                SaveScrollPosition="True"
032.                AllowScroll="true"
033.                UseStaticHeaders="True"></Scrolling>
034.        </ClientSettings>
035. 
036.        <MasterTableView
037.            CommandItemDisplay="TopAndBottom"
038.            AutoGenerateColumns="False"
039.            DataKeyNames="id"
040.            DataSourceID="AppToAppDependenciesDS">
041. 
042.            <PagerStyle AlwaysVisible="true" />
043. 
044.            <SortExpressions>
045.                <telerik:GridSortExpression SortOrder="Ascending" FieldName="FromApplication.BU_APP_NAME" />
046.            </SortExpressions>
047. 
048.            <Columns>
049. 
050.                <telerik:GridEditCommandColumn
051.                    UniqueName="EditCommand"
052.                    Exportable="false">
053.                </telerik:GridEditCommandColumn>
054. 
055.                <telerik:GridBoundColumn
056.                    DataField="id"
057.                    DataType="System.Int32"
058.                    FilterControlAltText="Filter id column"
059.                    HeaderText="id"
060.                    ReadOnly="True"
061.                    SortExpression="id"
062.                    UniqueName="id"
063.                    CurrentFilterFunction="NoFilter"
064.                    AutoPostBackOnFilter="true"
065.                    Visible="False"
066.                    Exportable="true">
067.                    <ColumnValidationSettings>
068.                        <ModelErrorMessage Text="" />
069.                    </ColumnValidationSettings>
070.                </telerik:GridBoundColumn>
071. 
072.                <telerik:GridBoundColumn
073.                    UniqueName="FromAppId"
074.                    Visible="false"
075.                    ReadOnly="true"
076.                    Exportable="false">
077.                    <ColumnValidationSettings>
078.                        <ModelErrorMessage Text="" />
079.                    </ColumnValidationSettings>
080.                </telerik:GridBoundColumn>
081. 
082.                <telerik:GridHyperLinkColumn
083.                    UniqueName="FromApp"
084.                    DataNavigateUrlFormatString="~/ApplicationListNew.aspx?ApplicationName={0}"
085.                    DataNavigateUrlFields="FromApplication.BU_APP_NAME"
086.                    HeaderText="From App"
087.                    DataTextField="FromApplication.BU_APP_NAME"
088.                    AllowSorting="true"
089.                    AutoPostBackOnFilter="true"
090.                    CurrentFilterFunction="EqualTo"
091.                    AllowFiltering="true">
092.                    <ItemStyle Wrap="false" />
093.                    <FilterTemplate>
094.                        <telerik:RadComboBox
095.                            Skin="Metro"
096.                            ID="FromAppFilterCombobox"
097.                            Sort="Ascending"
098.                            DataSourceID="ApplicationDS"
099.                            DataTextField="BU_APP_NAME"
100.                            DataValueField="BU_APP_NAME"
101.                            AppendDataBoundItems="true"
102.                            OnClientSelectedIndexChanged=" FromApplicationNameChanged "
103.                            SelectedValue='<%# Container.OwnerTableView.GetColumn("FromApp").CurrentFilterValue %>'
104.                            runat="server"
105.                            Width="400px">
106.                            <Items>
107.                                <telerik:RadComboBoxItem Text="All" />
108.                            </Items>
109.                        </telerik:RadComboBox>
110.                        <telerik:RadScriptBlock ID="FromAppRadScriptBlock" runat="server">
111.                            <script type="text/javascript">
112.                                function FromApplicationNameChanged(sender, args) {
113.                                    var tableView = $find("<%# Container.OwnerTableView.ClientID %>");
114.                                    tableView.filter("FromApp", args.get_item().get_value(), "EqualTo");
115.                                }
116.                            </script>
117.                        </telerik:RadScriptBlock>
118.                    </FilterTemplate>
119.                </telerik:GridHyperLinkColumn>
120. 
121.                <telerik:GridBoundColumn
122.                    UniqueName="ToAppId"
123.                    Visible="false"
124.                    ReadOnly="true"
125.                    Exportable="false">
126.                    <ColumnValidationSettings>
127.                        <ModelErrorMessage Text="" />
128.                    </ColumnValidationSettings>
129.                </telerik:GridBoundColumn>
130. 
131.                <telerik:GridHyperLinkColumn
132.                    UniqueName="ToApp"
133.                    DataNavigateUrlFormatString="~/ApplicationListNew.aspx?ApplicationName={0}"
134.                    DataNavigateUrlFields="ToApplication.BU_APP_NAME"
135.                    HeaderText="To App"
136.                    DataTextField="ToApplication.BU_APP_NAME"
137.                    AllowSorting="true"
138.                    AutoPostBackOnFilter="true"
139.                    CurrentFilterFunction="EqualTo"
140.                    AllowFiltering="true">
141.                    <ItemStyle Wrap="false" />
142.                    <FilterTemplate>
143.                        <telerik:RadComboBox
144.                            Skin="Metro"
145.                            ID="ToAppFilterCombobox"
146.                            Sort="Ascending"
147.                            DataSourceID="ApplicationDS1"
148.                            DataTextField="BU_APP_NAME"
149.                            DataValueField="BU_APP_NAME"
150.                            AppendDataBoundItems="true"
151.                            OnClientSelectedIndexChanged=" ToApplicationNameChanged "
152.                            SelectedValue='<%# Container.OwnerTableView.GetColumn("ToApp").CurrentFilterValue %>'
153.                            runat="server"
154.                            Width="400px">
155.                            <Items>
156.                                <telerik:RadComboBoxItem Text="All" />
157.                            </Items>
158.                        </telerik:RadComboBox>
159.                        <telerik:RadScriptBlock ID="ToAppRadScriptBlock" runat="server">
160.                            <script type="text/javascript">
161.                                function ToApplicationNameChanged(sender, args) {
162.                                    var tableView = $find("<%# Container.OwnerTableView.ClientID %>");
163.                                    tableView.filter("ToApp", args.get_item().get_value(), "EqualTo");
164.                                }
165.                            </script>
166.                        </telerik:RadScriptBlock>
167.                    </FilterTemplate>
168.                </telerik:GridHyperLinkColumn>
169. 
170.                <telerik:GridBoundColumn
171.                    DataField="Comment"
172.                    FilterControlAltText="Filter Comment column"
173.                    HeaderText="Comments"
174.                    SortExpression="Comment"
175.                    UniqueName="Comments"
176.                    CurrentFilterFunction="NoFilter">
177.                    <ColumnValidationSettings>
178.                        <ModelErrorMessage Text="" />
179.                    </ColumnValidationSettings>
180.                </telerik:GridBoundColumn>
181. 
182.                <telerik:GridButtonColumn
183.                    CommandName="Delete"
184.                    Text="Delete"
185.                    HeaderText="Delete"
186.                    UniqueName="DeleteCommand"
187.                    Exportable="false"
188.                    ButtonType="ImageButton"
189.                    ImageUrl="Images/delete.png">
190.                </telerik:GridButtonColumn>
191. 
192.            </Columns>
193.            <EditFormSettings EditFormType="Template">
194.                <FormStyle BackColor="White" />
195.                <FormTemplate>
196.                    <table
197.                        id="Table4"
198.                        cellspacing="1"
199.                        cellpadding="5"
200.                        width="auto"
201.                        border="0"
202.                        class="module"
203.                        style="padding: 20px;">
204. 
205.                        <tr>
206.                            <td>From Application:</td>
207.                            <td>
208.                                <telerik:RadComboBox
209.                                    Skin="Metro"
210.                                    ID="FromApplicationComboBox"
211.                                    Sort="Ascending"
212.                                    DataSourceID="ApplicationDS"
213.                                    DataTextField="BU_APP_NAME"
214.                                    DataValueField="id"
215.                                    AppendDataBoundItems="true"
216.                                    SelectedValue='<%# Bind("FromApp") %>'
217.                                    runat="server"
218.                                    Width="300">
219.                                </telerik:RadComboBox>
220.                                <%--<telerik:RadComboBox
221.                                    ID="FromApplicationComboBox"
222.                                    runat="server"
223.                                    Width="300"
224.                                    DataTextField="BU_APP_NAME"
225.                                    DataValueField="id"
226.                                    AllowCustomText="false"
227.                                    EnableLoadOnDemand="true"
228.                                    MarkFirstMatch="true"
229.                                    OnItemsRequested="AppCombobox_ItemsRequested"
230.                                    OnClientItemChecking="clientItemChecking"
231.                                    Text='<%# Bind("FromApp") %>'>
232.                                </telerik:RadComboBox>--%>
233.                            </td>
234.                        </tr>
235.                        <tr>
236.                            <td>To Application:</td>
237.                            <td>
238.                                <telerik:RadComboBox
239.                                    Skin="Metro"
240.                                    ID="ToApplicationCombobox"
241.                                    ClientIDMode="Static"
242.                                    Sort="Ascending"
243.                                    DataSourceID="ApplicationDS1"
244.                                    DataTextField="BU_APP_NAME"
245.                                    DataValueField="id"
246.                                    AppendDataBoundItems="true"
247.                                    SelectedValue='<%# Bind("ToApp") %>'
248.                                    runat="server"
249.                                    CheckBoxes="true"
250.                                    Width="300"
251.                                    AutoPostBack="False">
252.                                    <%--<DefaultItem
253.                                        Text="Please select an application"
254.                                        Value="" />--%>
255.                                </telerik:RadComboBox>
256.                                <%--<telerik:RadComboBox
257.                                    ID="ToApplicationCombobox"
258.                                    runat="server"
259.                                    Width="300"
260.                                    DataTextField="BU_APP_NAME"
261.                                    DataValueField="id"
262.                                    MarkFirstMatch="true"
263.                                    AllowCustomText="false"
264.                                    EnableLoadOnDemand="true"
265.                                    RenderMode="Lightweight"
266.                                    CheckBoxes="true"
267.                                    CheckedItemsTexts="FitInInput"
268.                                    OnItemsRequested="AppCombobox_ItemsRequested"
269.                                    OnClientItemChecked=" OnClientItemChecked "
270.                                    Text='<%# Bind("ToApp") %>'>
271.                                </telerik:RadComboBox>--%>
272.                            </td>
273.                        </tr>
274.                        <tr>
275.                            <td>Comments:</td>
276.                            <td>
277.                                <telerik:RadTextBox
278.                                    ID="CommentsTextBox"
279.                                    Width="300"
280.                                    runat="server"
281.                                    Text='<%# Bind("Comment") %>'>
282.                                </telerik:RadTextBox>
283.                            </td>
284. 
285.                        </tr>
286.                        <tr>
287.                            <asp:CustomValidator
288.                                ID="CustomValidator1"
289.                                ErrorMessage="Please choose at least one app to link!"
290.                                ClientValidationFunction="selectionFormValidationGroup"
291.                                ValidationGroup="SelectionFormValidationGroup"
292.                                runat="server"
293.                                CssClass="validator" />
294.                            <td align="right" colspan="2" style="padding-top: 15px;">
295.                                <asp:Button
296.                                    ID="btnUpdate"
297.                                    Text='<%# (Container is GridEditFormInsertItem) ? "Insert" : "Update" %>'
298.                                    runat="server"
299.                                    CommandName='<%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>'
300.                                    ValidationGroup="SelectionFormValidationGroup"></asp:Button
301.                                <asp:Button
302.                                    ID="btnCancel"
303.                                    Text="Cancel"
304.                                    runat="server"
305.                                    CausesValidation="False"
306.                                    CommandName="Cancel" />
307.                            </td>
308.                        </tr>
309.                    </table>
310.                </FormTemplate>
311.            </EditFormSettings>
312.        </MasterTableView>
313.    </telerik:RadGrid>
314. 
315.    <asp:EntityDataSource
316.        ID="AppToAppDependenciesDS"
317.        runat="server"
318.        ConnectionString="name=ServerMapContext"
319.        DefaultContainerName="ServerMapContext"
320.        EnableFlattening="False"
321.        EntitySetName="AppToAppDependencies"
322.        Include="FromApplication, ToApplication"
323.        EnableUpdate="true"
324.        EnableInsert="true"
325.        EnableDelete="True"
326.        Where="(it.FromApplication.[IT_DECOMMISSION_DATE] is null) && it.ToApplication.[IT_DECOMMISSION_DATE] is null">
327.    </asp:EntityDataSource>
328. 
329.    <asp:EntityDataSource
330.        ID="ApplicationDS"
331.        runat="server"
332.        ConnectionString="name=ServerMapContext"
333.        DefaultContainerName="ServerMapContext"
334.        EnableFlattening="False"
335.        EntitySetName="Applications_List"
336.        EntityTypeFilter="Applications_List"
337.        Select="it.[id], it.[BU_APP_NAME],it.[IT_DECOMMISSION_DATE]"
338.        OrderBy="it.[BU_APP_NAME]"
339.        Where="(it.[IT_DECOMMISSION_DATE] is null)">
340.    </asp:EntityDataSource>
341. 
342.    <asp:EntityDataSource
343.        ID="ApplicationDS1"
344.        runat="server"
345.        ConnectionString="name=ServerMapContext"
346.        DefaultContainerName="ServerMapContext"
347.        EnableFlattening="False"
348.        EntitySetName="Applications_List"
349.        EntityTypeFilter="Applications_List"
350.        Select="it.[id], it.[BU_APP_NAME],it.[IT_DECOMMISSION_DATE]"
351.        OrderBy="it.[BU_APP_NAME]"
352.        Where="(it.[IT_DECOMMISSION_DATE] is null)">
353.    </asp:EntityDataSource>
354. 
355.    <script type="text/javascript">
356.        function selectionFormValidationGroup(sender, args) {
357.            var combos = $telerik.$(".selection-form .RadComboBox");
358. 
359.            args.IsValid = true;
360. 
361.            for (var i = 0; i < combos.length; i++) {
362.                if (combos[i].value == "-1") {
363.                    args.IsValid = false;
364.                    break;
365.                }
366.            }
367.        }
368.    </script>
369.
</asp:Content>

Konstantin Dikov
Telerik team
 answered on 11 Jan 2017
1 answer
199 views

Having done a lot of work with RadScheduler over the last couple of weeks, I have discovered that it has a serious bug in how it determines the end of day.

Conventionally, a day starts at 00:00:00 and runs through to 23:59:59. Adding one more second moves to the start of the next day.

If you are looking at the week view and you set SelectedDate to 26Dec2016 00:00:00 (I use this notation here to avoid confusion, it is of course, a DateTime value), VisibleRangeStart is correctly set to 26Dec2016 00:00:00. VisibleRangeEnd is set to 2Jan2017 00:00:00. This is wrong! VisibleRangeEnd should be 1Jan2017 23:59:59 ie the week starting 26Dec runs from 26Dec to 1Jan, NOT 2Jan !

Unfortunately, it appears that RadScheduler has been entirely coded on the principal that the day runs from 00:00:00 to 00:00:00.values which is fundamentally wrong. This causes all kinds of problems and errors proliferating when trying to do anything with the scheduler because you end up having to code to correct for the error. Drag/Drop is similarly affected.

I should clarify that visually, the scheduler appears fine, but it transacts in the background with wrong data!

Does Telerik have any plans to correct this error ?

Bozhidar
Telerik team
 answered on 11 Jan 2017
1 answer
93 views

I have often tootipified server-side bound grids. But now I would like to do so with a client-side bound grid. Is this possible?

When done server-side, I alter the tootip manager's targetcontrols collection in the grid's ItemDatabound event. Client-side I have access to the RowDataBound event which appears to be analogous, but I'm not sure how I would modify the tooltip manager's targetcontrols collection through client-side code.

Marin Bratanov
Telerik team
 answered on 11 Jan 2017
14 answers
377 views
I have a project with RadAutoCompleteBox and every thing works fine on my localhost, but when I upload it the page doesn't crash but the drop down doesn't appear at all but yet it works fine on my computer.

I have the RadAutoCompleteBox binded to a web service.

When I go to the web service page online I get the following error. 

Cannot serialize member Telerik.Web.UI.AutoCompleteBoxData.Context of type System.Collections.Generic.Dictionary`2[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], because it implements IDictionary.


Here is my code in the web service.
using ClassLibrary;
// uses the class library
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Telerik.Web.UI.AutoCompleteBox;
using System.Web.Services;
using Telerik.Web.UI;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
 
 
//using System.Collections;
//using System.Runtime.Serialization;
//using System.Runtime.Serialization.Formatters.Binary;
 
 
namespace ReportsViewer.Services
{
    /// <summary>
    /// Web service for telerik autocompletebox
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.ComponentModel.ToolboxItem(false)]
    // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
    [System.Web.Script.Services.ScriptService]
     
    public class StaffWebService : System.Web.Services.WebService
    {
        string QueryData {get; set;}
        string AcademicYear { get; set; }
 
        [WebMethod(EnableSession = true)]
 
        public AutoCompleteBoxData GetStaffNames(object context)
        {
            //Orignal code
            //QueryData = context["Text"].ToString();
            //var AcademicYear = Session["AcademicYear"];
 
            //Testing code
            string QueryData = ((IDictionary<string, object>)context)["Text"].ToString();
            var AcademicYear = Session["AcademicYear"];
 
                using (SqlConnection cn = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["Connect"].ConnectionString))
                {
                cn.Open();
                using (SqlCommand cm = cn.CreateCommand())
                {
                    cm.CommandText = "sql stuff";
                     
                    cm.Parameters.AddWithValue("@QueryData", QueryData);
                    cm.Parameters.AddWithValue("@AcademicPeriod", AcademicYear);
                     
                    using (SqlDataAdapter objAdpt = new SqlDataAdapter())
                    {
                        objAdpt.SelectCommand = cm;
 
                        using (DataTable dt = new DataTable())
                        {
                            objAdpt.Fill(dt);
                            dt.DefaultView.Sort = "Name";
 
                            List<AutoCompleteBoxItemData> result = new List<AutoCompleteBoxItemData>();
                            AutoCompleteBoxData dropDownData = new AutoCompleteBoxData();
 
                            result = new List<AutoCompleteBoxItemData>();
 
                            for (int i = 0; i < dt.Rows.Count; i++)
                            {
                                AutoCompleteBoxItemData itemData = new AutoCompleteBoxItemData();
                                itemData.Text = dt.Rows[i]["Name"].ToString();
                                itemData.Value = dt.Rows[i]["WINDOWS_USER_ID"].ToString();
 
                                result.Add(itemData);
                            }
 
                            dropDownData.Items = result.ToArray();
                            return dropDownData;
      
                        }
                             
                    }
                         
                     
                }
 
            }
        }
         
    }//end of class
}//end of namespace

Cheers

John Moore
David
Top achievements
Rank 1
 answered on 10 Jan 2017
3 answers
48 views

Hi!

I encountered a weird phenomenon when using the SingleClick feature of the RadButton

<div class="footer" dir="rtl">
    <telerik:RadButton RenderMode="Lightweight" runat="server" ID="buttonSave"  Text="Speichern" SingleClick="true" SingleClickText="Speichere .." CausesValidation="False" OnClick="buttonSaveClicked" />
    <telerik:RadButton RenderMode="Lightweight" runat="server" ID="buttonCancel" Text="Abbrechen" SingleClick="true" SingleClickText="Abbrechen .." CausesValidation="False" OnClick="buttonCancelClicked" />
</div>

 

When I click one of the buttons the displayed text is changing for the time of the PostBack, but the text shown is: ".. Speichere" and ".. Abbrechen" instead of the dots being after the string. When I set the SingleClickText to have letters after the dots it's shown correctly. The amount of dots don't change anything, neither do spaces between the dots and the normal text or after the dots.

In addition to that JS-Console says "no element found" when the button is clicked.

Is that a bug or am I missing something important?

Thanks already

Greetings Felix

Patrick | Technical Support Engineer, Senior
Telerik team
 answered on 10 Jan 2017
7 answers
516 views
I would like my RadScheduler to appear in the 24 hours mode (that can be achieved with aTelerik.Web.UI.SchedulerNavigationCommand.SwitchFullTime command) -- But I don't want to do this as a result of any navigation, I just want to set it either in the ASPX declaration or on the server-side during initialization.

How do I do this?
Peter Milchev
Telerik team
 answered on 10 Jan 2017
7 answers
196 views

Can anyone please advise why RadColorPicker appears on our web pages like the attached image ?

This happens in both IE11 and Chrome when the page first appears.

Interestingly, if the browser page is refreshed, the color picker appears properly sized.

Coding (embedded in a Bootstrap panel, although I don't think this is related):

<div class="panel panel-default">
    <div class="panel-heading"><asp:Label ID="lblAddEditStep" runat="server"></asp:Label></div>
            <div class="panel-body">
                <div class="row">
                    <div class="col-sm-2 coursenames" style="vertical-align:top"><asp:Label ID="lblStepColour" runat="server"></asp:Label></div>
                    <div class="col-sm-10 coursenames" style="padding-left:20px">
                        <telerik:RadColorPicker ID="radColourPicker" runat="server"></telerik:RadColorPicker>
                    </div>

                </div>

            </div>
        </div>

</div>

Thankyou

Shawn
Top achievements
Rank 1
 answered on 10 Jan 2017
1 answer
100 views

Hi,

 

When using Mobile rendermode the height of the menu is always derived from the first level.

The menu's height is not reset when browsing to lower levels.

 

So if for instance we have one item on first level and five on second, there will always be a scrollbar.

Why is that?

 

Marc

Dimitar
Telerik team
 answered on 10 Jan 2017
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?