Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
159 views
Hello,

I just tried the following example of importing RTF files in the editor:
http://demos.telerik.com/aspnet-ajax/editor/examples/import-export/rtf-import-export/defaultcs.aspx

But it always shows the following exception message when I import a RTF file:
"Exception: The Document Processing Library fails to convert the input file stream to RadFlowDocument"

What is the problem?
Doesn't it support the import of all(!) RTF files?

Regards,
Felix
Felix
Top achievements
Rank 1
 answered on 09 Jan 2015
1 answer
88 views
Hello,

I tried to make radscheduler to be not editable. I use below code to set.

RadScheduler1.AllowInsert = false;
RadScheduler1.ReadOnly = true;
RadScheduler1.Enabled = false;
RadScheduler1.AllowDelete = false;
RadScheduler1.AllowEdit = false;

It will not show delete button. It will not show inline insert template when I click on empty timeslot. But it showed advanced edit/ advanced insert form when I click on timeslot. And I cannot click anything else since all controls inside these templates are disabled. I tried Radscheduler1.Enabled=false. But still not working. Anyone can advice me on this issue? 

Thank you.

Best regards,
Ei Wai


Boyan Dimitrov
Telerik team
 answered on 09 Jan 2015
1 answer
117 views
Hi,
is it possible to make three-state check box in tree view ?
This is my tree view -
                                    <telerik:RadTreeView
                                    ID="theTree"
                                    runat="server"
                                    EnableDragAndDrop="false"
                                    AllowNodeEditing="false"
                                    MultipleSelect="false"
                                    EnableDragAndDropBetweenNodes="false"
                                    CheckBoxes="true"
                                    OnClientNodeClicking="OnClientNodeClicking"
                                    OnClientNodeChecked="ClientNodeChecked"                                                                   
                                    > 
I add nodes dynamically from javascript.
TriStateCheckBoxes = "true" - not working for me
Ivan Danchev
Telerik team
 answered on 09 Jan 2015
1 answer
54 views
guys - we have a method in the ItemDataBound that works well. but I have a question. is it possible to exclude one of the columns. and even have that one cell
be it's own color?


switch (inv_gridcolors)
{
case 2: //On shipping truck in yard
foreach (TableCell cell in boundItem.Cells)
{
cell.BackColor = System.Drawing.Color.Magenta;
inTruck = true;
}
break;
case 1: //Invalid; Move pending
foreach (TableCell cell in boundItem.Cells)
{
cell.BackColor = System.Drawing.Color.RoyalBlue; ;
}
break;
}
rik butcher
Top achievements
Rank 1
 answered on 09 Jan 2015
14 answers
589 views
Hello 
I have this problem:

when i insert data into radgrid, i need to check if one textfield(<telerik:GridBoundColumn>) isnt empty, using a requiredfieldvalidator.
but when i upload a file to the radasyncupload(<telerik:GridAttachmentColumn>) and if i leave textfield empty, the required field validator doesnt work as suposed, a postback event happens and i loose the file.

im using radajaxmanagerproxy. i cant use radajaxmanager.


<telerik:GridBoundColumn ...>
                    <ColumnValidationSettings EnableRequiredFieldValidation="true">
                        <RequiredFieldValidator SetFocusOnError="true" ForeColor="Red" Text="*" ToolTip="Empty Field"><span>*</span></RequiredFieldValidator>
                        <ModelErrorMessage Text=""></ModelErrorMessage>
                    </ColumnValidationSettings>
</telerik:GridBoundColumn>


any help would be appreciated.
thanks in advance


Viktor Tachev
Telerik team
 answered on 09 Jan 2015
1 answer
69 views
Is there a way to have scheduler in week view, 24 hours and have it scrolled to, for example 8am, on load?
Boyan Dimitrov
Telerik team
 answered on 09 Jan 2015
2 answers
88 views
Hello,


I have a problem with my binding GeoJSON, indeed I followed your tutorial and your documentation, but nothing works. It's been 2 days since I test and I don't understand where is my error. Same with your sample (live-demo)

Can you help me? Here is my code: http://puu.sh/eepPn/4e9c502a49.png

Here is the result: http://puu.sh/eepUv/ad556aeae5.png

Plz help me !


Naografix
Top achievements
Rank 1
 answered on 09 Jan 2015
3 answers
236 views
Hi

I am trying to export a snippet of code to PDF but the styles aren't being applied. They definitely exist and work since I have generated a standard html page with the exact same html and all the CSS styles are applied. Is there any setting/config/workaround for this? I need the PDF to look exactly like the website.

Thanks
Ianko
Telerik team
 answered on 09 Jan 2015
4 answers
200 views
Hello,
         I used the Rad Scheduler For selection of Etc Date in calendar. So When Testing have the 8 days (12/25/2014 to 01/05/2015) in Update Etc then selection of date 12/25/2014 to 12/31/2014 and extra 2 column selected in December month in calender. And the next month (January) selected date only 01/05/2015. 01/01/2015 and 01/02/2015 date not selected it is wrong. Its should be select the 01/01/2015 and 01/02/2015 date, means it should be select total 12/25/2014 to 01/05/2015 , not select the 2 extra column in calender.
          Attach the screen shot of Application. Please see it.


I using Rad Scheduler coding like-

<telerik:RadScheduler runat="server" ID="rscCalender"  
            
          GroupBy="ProjectID" GroupingDirection="Vertical"  
            DataSourceID="EventsDataSource" 
            DataKeyField="ProjectID"
            DataSubjectField="Stage" 
             FirstDayOfWeek="Monday" LastDayOfWeek="Friday"
              DataStartField="Phase_Start_Date" DataEndField="Phase_End_Date"
             SelectedView="MonthView" OnTimeSlotCreated="rscCalender_TimeSlotCreated"
            OnAppointmentInsert="rscCalender_AppointmentInsert" OnAppointmentUpdate="rscCalender_AppointmentUpdate" AllowDelete="false" AllowEdit="false" AllowInsert="false" >

            <MonthView FirstDayHeaderDateFormat="''d''" />
            
            <AdvancedForm Modal="false"></AdvancedForm>
           
            <ResourceHeaderTemplate >
                <asp:Panel ID="ResourceImageWrapper" runat="server">               
                    <asp:LinkButton ID="lnkProjectName" runat="server" ></asp:LinkButton>
                </asp:Panel>
            </ResourceHeaderTemplate>
            <ResourceTypes>
                <telerik:ResourceType KeyField="BuildID" Name="ProjectID" TextField="ProjectName" ForeignKeyField="BuildID"
                 DataSourceID="ProjectSource"  ></telerik:ResourceType>
            </ResourceTypes>
          <DayView  UserSelectable="false"/>
   
            <WeekView UserSelectable="false" />
    <TimelineView  UserSelectable="false"/>
        </telerik:RadScheduler>
Sangeeta
Top achievements
Rank 1
 answered on 09 Jan 2015
1 answer
116 views
Hi,

I am trying to achieve the following:

First fill a LightBox with three images and then three YT videos in iframes from code-behind with ItemTemplate.InstantiateIn.
The image and video items are created but clicking the Prev/Next buttons results in a full page postback when I get to the video items.

Do you think it is possible to create a LightBox with such content?

Thanks,
Marc
Kostadin
Telerik team
 answered on 09 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?