Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
203 views
Is it possible to disable the dragging handles on an appointment entry? I'm not trying to disable editing completely (the context menu needs to remain enabled), just prevent a user from dragging the entry to extend the time.
Bozhidar
Telerik team
 answered on 18 Nov 2015
1 answer
84 views

I am still exploring the Spreadsheet control and I can see where it would be a useful tool.  I am able to get cell values using JavaScript but I don't see a way to change the values.  Also, I would like to see a cell onChange event that would allow me to format the font color if the value changes.

We are using similar functionality using your grid control on a screen.  The spreadsheet control might be better suited for this screen if I can add this functionality.  Is this available?  If so, can you provide example code?  If not, are you planning to add these to the Spreadsheet control?

Bozhidar
Telerik team
 answered on 18 Nov 2015
1 answer
197 views
Hello.

I have a multiselect combobox with checkeboxes. Let assume that variable "options" has value "Building 1, Building 2". My combobox has items "Building 1", "Building 2", "Building 3". I want to by using JS select and check those two values. This code check Building 1 and Building 2, but only Building 2 is really selected.


function setValuesInCombobox(options) {
    var controler =$find(getClientIdById(cboBuildingControlName));   
    controler.set_value(options);
    controler.set_text(options);
    var allChoicesFromCbo = controler.get_items()._array; 
    var selectedOptions =  options.split(",");
 
    for(i = 0; i < selectedOptions.length; i++) {
      var building = selectedOptions[i].trim();
      for(j = 0; j < allChoicesFromCbo.length; j++) {       
        var nameOfBuildingInCbo = allChoicesFromCbo[j]._properties._data.value;
        if( nameOfBuildingInCbo == building) {
          allChoicesFromCbo[j]._setChecked(true);
          allChoicesFromCbo[j].select();
        }
      }
    }
Magdalena
Telerik team
 answered on 18 Nov 2015
1 answer
50 views

There is an issue resizing the appointments of RadScheduler, 
when you drag the edge of the appointment, more I'm closer to right side, more be a mismatch between the cursor position and location of the appointment

I recorded a video to show the problem

https://youtu.be/bsuXTtpieDU

Plamen
Telerik team
 answered on 18 Nov 2015
4 answers
823 views
Hi, 

Is there  any way to Hide /show rad grid like detail table.

Thanks
Eva
Lee
Top achievements
Rank 1
 answered on 17 Nov 2015
1 answer
90 views

I am receiving the following error when trying to run the form with the Telerik Diagram. Version is 2015.1.401.45 . I'm using IE11. And .net Framework = 4.5

 

0x800a138f - JavaScript runtime error: Unable to get property 'getConnector' of undefined or null reference

 

The line directly above this error is on 

var bp=X.getShapeById(bq);
return bp.getConnector(Y.connector||d);

 

Please let me know if more information is required. Thanks!​​

Vessy
Telerik team
 answered on 17 Nov 2015
1 answer
112 views

 Hi Telerik Team,

We are using Telerik AJAX UI control version "2015.3.930.45" in our project. We are using Telerik Image editor in our application and we are facing issue with the eps files to display in Telerik Image editor.

We have tried to display the eps file in Telerik Image editor but eps file was NOT visible in Telerik Image editor. We have tried to open this eps file in a freeware EPS File Viewer (http://epsfileviewer.com/) , in which the said file get displayed properly..

Here is the sample code which we are using in our project:
 <telerik:RadImageEditor ID="TelerikRadImageEditor" runat="server" ImageUrl="https://<servername>/<folderName>/<fileName>.<extension>" >
</telerik:RadImageEditor>

 

Please help us out to resolve this problem.

Vessy
Telerik team
 answered on 17 Nov 2015
16 answers
732 views
I have a page structure like this:

-- Master Page
    -- Page
        -- User Control
            -- RadGrid

In the user control the component structure is like this:

-- <div>
    -- <ajax:ModalPopupExtender>
        -- <asp:Panel>
            -- <telerik:RadGrid>

In my user control's Page_Load method, I have something like:

protected void Page_Load(object sender, EventArgs e)
{
    LinkButton myLinButton = myMasterTemplate.MyButton; 
    myLinkButton.Click += myLinkButton_Click; 
    
    if (Page.IsPostBack) 
        myGrid.NeedDataSource += myGrid_NeedDataSource 
    
    ...(more code)
}

What happens is when I click on the link button the modal window will show up which contains the grid. It works fine except the user control's Page_Load event fires twice. If I comment out the line "myGrid.NeedDataSource += myGrid_NeedDataSource " then it's fine but of course I can't do that. This leads me to believe, internally, NeedDataSource is causing another postback. Is this correct? If so, is there any way to prevent this from happening?

Thanks.

Eyup
Telerik team
 answered on 17 Nov 2015
1 answer
59 views

Overlapping labels and x-axis title.

I added margin to some value also.

For example below code.

<TitleAppearance Text="Lost To Vendor">
                <TextStyle Margin="150px"  />
            </TitleAppearance>​

Please see the attached file.

urgent......

 

Thanks,

Sreekanth.

Vessy
Telerik team
 answered on 17 Nov 2015
1 answer
739 views

I am using the admin lte theme and i picked the bootstrap theme for my date picker but no matter how many times i click on the popup icon the date picker refuses to show.

01.<telerik:RadDatePicker ID="rdDateOfBirth" Style="vertical-align: middle;" MinDate="2006-02-01"
02.    runat="server" MaxDate="2099-12-16" Culture="en-US" FocusedDate="2006-02-01"
03.    Width="136px" AutoPostBack="True" SelectedDate="2015-11-12" Skin="Bootstrap">
04.    <DateInput ID="DateInput3" runat="server" DateFormat="dd-MMM-yyyy" Height="20px"
05.        AutoPostBack="True" DisplayText="12-Nov-2015" SelectedDate="2015-11-12" value="12-Nov-2015">
06.<EmptyMessageStyle Resize="None"></EmptyMessageStyle>
07. 
08.<ReadOnlyStyle Resize="None"></ReadOnlyStyle>
09. 
10.<FocusedStyle Resize="None"></FocusedStyle>
11. 
12.<DisabledStyle Resize="None"></DisabledStyle>
13. 
14.<InvalidStyle Resize="None"></InvalidStyle>
15. 
16.<HoveredStyle Resize="None"></HoveredStyle>
17. 
18.<EnabledStyle Resize="None"></EnabledStyle>
19.    </DateInput>
20.    <Calendar ID="Calendar3" runat="server" UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False"
21.        ViewSelectorText="x" EnableKeyboardNavigation="True" Skin="Bootstrap">
22.    </Calendar>
23. 
24.<DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton>
25.</telerik:RadDatePicker>

Maria Ilieva
Telerik team
 answered on 17 Nov 2015
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?